summaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules
diff options
context:
space:
mode:
authorSandro <sandro.jaeckel@gmail.com>2022-11-10 22:41:25 +0100
committerGitHub <noreply@github.com>2022-11-10 22:41:25 +0100
commite37d7ea412f2d8fa294c00a975c68f3aaf75e253 (patch)
tree4e8f651056c0ac411bb679bd9bb3c5ec370d62f5 /pkgs/development/python-modules
parenta08e39f99fd2acf97645f3f213d5d1948f4709c3 (diff)
parentd7ab2aa51ced7f2ffc92c2aebf35c0db5413c987 (diff)
Merge pull request #198908 from anthonyroussel/fsspec_2022_10_0
Diffstat (limited to 'pkgs/development/python-modules')
-rw-r--r--pkgs/development/python-modules/fsspec/default.nix8
-rw-r--r--pkgs/development/python-modules/gcsfs/default.nix5
-rw-r--r--pkgs/development/python-modules/s3fs/default.nix7
3 files changed, 11 insertions, 9 deletions
diff --git a/pkgs/development/python-modules/fsspec/default.nix b/pkgs/development/python-modules/fsspec/default.nix
index 72e8ad60e066..452d9b49edfe 100644
--- a/pkgs/development/python-modules/fsspec/default.nix
+++ b/pkgs/development/python-modules/fsspec/default.nix
@@ -17,16 +17,16 @@
buildPythonPackage rec {
pname = "fsspec";
- version = "2022.8.2";
+ version = "2022.10.0";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
- owner = "intake";
+ owner = "fsspec";
repo = "filesystem_spec";
rev = version;
- hash = "sha256-eT1zqTbU5kfQ7bvzigT9579HfXU6VaOEjRg8VG/DHMI=";
+ hash = "sha256-+lPt/zqI3Mkt+QRNXq+Dxm3h/ryZJsfrmayVi/BTtbg=";
};
propagatedBuildInputs = [
@@ -68,7 +68,7 @@ buildPythonPackage rec {
meta = with lib; {
description = "A specification that Python filesystems should adhere to";
- homepage = "https://github.com/intake/filesystem_spec";
+ homepage = "https://github.com/fsspec/filesystem_spec";
changelog = "https://github.com/fsspec/filesystem_spec/raw/${version}/docs/source/changelog.rst";
license = licenses.bsd3;
maintainers = with maintainers; [ costrouc ];
diff --git a/pkgs/development/python-modules/gcsfs/default.nix b/pkgs/development/python-modules/gcsfs/default.nix
index 6ac2d6e23bf7..76847827bdaf 100644
--- a/pkgs/development/python-modules/gcsfs/default.nix
+++ b/pkgs/development/python-modules/gcsfs/default.nix
@@ -18,7 +18,7 @@
buildPythonPackage rec {
pname = "gcsfs";
- version = "2022.8.2";
+ version = "2022.10.0";
format = "setuptools";
disabled = pythonOlder "3.7";
@@ -27,7 +27,7 @@ buildPythonPackage rec {
owner = "fsspec";
repo = pname;
rev = version;
- hash = "sha256-BnnKFrWz47izKc7nS8NR1Vze1x9kJdYBsQT2KEY9ghM=";
+ hash = "sha256-+S4AziibYWos/hZ1v3883b1Vv3y4xjIDUrQ8c2XJ1MQ=";
};
propagatedBuildInputs = [
@@ -66,6 +66,7 @@ buildPythonPackage rec {
meta = with lib; {
description = "Convenient Filesystem interface over GCS";
homepage = "https://github.com/fsspec/gcsfs";
+ changelog = "https://github.com/fsspec/gcsfs/raw/${version}/docs/source/changelog.rst";
license = licenses.bsd3;
maintainers = with maintainers; [ nbren12 ];
};
diff --git a/pkgs/development/python-modules/s3fs/default.nix b/pkgs/development/python-modules/s3fs/default.nix
index 343d637db0ab..b1bebfce47c0 100644
--- a/pkgs/development/python-modules/s3fs/default.nix
+++ b/pkgs/development/python-modules/s3fs/default.nix
@@ -11,14 +11,14 @@
buildPythonPackage rec {
pname = "s3fs";
- version = "2022.8.2";
+ version = "2022.10.0";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
- hash = "sha256-PKBwGomp4SWijekIKdGflvQd2x2LQ3kHbCntgsSvhs0=";
+ hash = "sha256-6N64DyC9CyBZFBuHT9udauuMzjUxLqXywCsiWnigBAY=";
};
buildInputs = [
@@ -42,8 +42,9 @@ buildPythonPackage rec {
meta = with lib; {
broken = stdenv.isDarwin;
- homepage = "https://github.com/dask/s3fs/";
description = "A Pythonic file interface for S3";
+ homepage = "https://github.com/fsspec/s3fs";
+ changelog = "https://github.com/fsspec/s3fs/raw/${version}/docs/source/changelog.rst";
license = licenses.bsd3;
maintainers = with maintainers; [ teh ];
};