about summary refs log tree commit diff
diff options
context:
space:
mode:
authorGaƩtan Lepage <33058747+GaetanLepage@users.noreply.github.com>2023-10-27 05:10:14 +0200
committerGitHub <noreply@github.com>2023-10-26 23:10:14 -0400
commit6fc7203e423bbf1c8f84cccf1c4818d097612566 (patch)
treea7326d0ed3a56158b27278cd853311c13df2109a
parentf1775e6477c6e342bbbdecf363f9f5821d7fd3e4 (diff)
downloadnixlib-6fc7203e423bbf1c8f84cccf1c4818d097612566.tar
nixlib-6fc7203e423bbf1c8f84cccf1c4818d097612566.tar.gz
nixlib-6fc7203e423bbf1c8f84cccf1c4818d097612566.tar.bz2
nixlib-6fc7203e423bbf1c8f84cccf1c4818d097612566.tar.lz
nixlib-6fc7203e423bbf1c8f84cccf1c4818d097612566.tar.xz
nixlib-6fc7203e423bbf1c8f84cccf1c4818d097612566.tar.zst
nixlib-6fc7203e423bbf1c8f84cccf1c4818d097612566.zip
python311Packages.fsspec: 2023.9.1 -> 2023.10.0 (#262753)
Changelog: https://filesystem-spec.readthedocs.io/en/latest/changelog.html#id1
-rw-r--r--pkgs/development/python-modules/fsspec/default.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/development/python-modules/fsspec/default.nix b/pkgs/development/python-modules/fsspec/default.nix
index 89d493bc87d6..bad3f4a4795c 100644
--- a/pkgs/development/python-modules/fsspec/default.nix
+++ b/pkgs/development/python-modules/fsspec/default.nix
@@ -29,16 +29,16 @@
 
 buildPythonPackage rec {
   pname = "fsspec";
-  version = "2023.9.1";
+  version = "2023.10.0";
   format = "setuptools";
 
-  disabled = pythonOlder "3.7";
+  disabled = pythonOlder "3.8";
 
   src = fetchFromGitHub {
     owner = "fsspec";
     repo = "filesystem_spec";
-    rev = version;
-    hash = "sha256-1ai+/8akUlP9kfzSKYEpDnobBfUC6EAPFPVVxh4jb/0=";
+    rev = "refs/tags/${version}";
+    hash = "sha256-GVBF2ppyIEvC4rR9IF4gwsdc4fJe1xHS1CyJEwFuVGw=";
   };
 
   propagatedBuildInputs = [