Merge pull request #198908 from anthonyroussel/fsspec_2022_10_0

authored by Sandro and committed by GitHub e37d7ea4 a08e39f9

Changed files
+11 -9
pkgs
development
python-modules
fsspec
gcsfs
s3fs
+4 -4
pkgs/development/python-modules/fsspec/default.nix
··· 17 17 18 18 buildPythonPackage rec { 19 19 pname = "fsspec"; 20 - version = "2022.8.2"; 20 + version = "2022.10.0"; 21 21 format = "setuptools"; 22 22 23 23 disabled = pythonOlder "3.7"; 24 24 25 25 src = fetchFromGitHub { 26 - owner = "intake"; 26 + owner = "fsspec"; 27 27 repo = "filesystem_spec"; 28 28 rev = version; 29 - hash = "sha256-eT1zqTbU5kfQ7bvzigT9579HfXU6VaOEjRg8VG/DHMI="; 29 + hash = "sha256-+lPt/zqI3Mkt+QRNXq+Dxm3h/ryZJsfrmayVi/BTtbg="; 30 30 }; 31 31 32 32 propagatedBuildInputs = [ ··· 68 68 69 69 meta = with lib; { 70 70 description = "A specification that Python filesystems should adhere to"; 71 - homepage = "https://github.com/intake/filesystem_spec"; 71 + homepage = "https://github.com/fsspec/filesystem_spec"; 72 72 changelog = "https://github.com/fsspec/filesystem_spec/raw/${version}/docs/source/changelog.rst"; 73 73 license = licenses.bsd3; 74 74 maintainers = with maintainers; [ costrouc ];
+3 -2
pkgs/development/python-modules/gcsfs/default.nix
··· 18 18 19 19 buildPythonPackage rec { 20 20 pname = "gcsfs"; 21 - version = "2022.8.2"; 21 + version = "2022.10.0"; 22 22 format = "setuptools"; 23 23 24 24 disabled = pythonOlder "3.7"; ··· 27 27 owner = "fsspec"; 28 28 repo = pname; 29 29 rev = version; 30 - hash = "sha256-BnnKFrWz47izKc7nS8NR1Vze1x9kJdYBsQT2KEY9ghM="; 30 + hash = "sha256-+S4AziibYWos/hZ1v3883b1Vv3y4xjIDUrQ8c2XJ1MQ="; 31 31 }; 32 32 33 33 propagatedBuildInputs = [ ··· 66 66 meta = with lib; { 67 67 description = "Convenient Filesystem interface over GCS"; 68 68 homepage = "https://github.com/fsspec/gcsfs"; 69 + changelog = "https://github.com/fsspec/gcsfs/raw/${version}/docs/source/changelog.rst"; 69 70 license = licenses.bsd3; 70 71 maintainers = with maintainers; [ nbren12 ]; 71 72 };
+4 -3
pkgs/development/python-modules/s3fs/default.nix
··· 11 11 12 12 buildPythonPackage rec { 13 13 pname = "s3fs"; 14 - version = "2022.8.2"; 14 + version = "2022.10.0"; 15 15 format = "setuptools"; 16 16 17 17 disabled = pythonOlder "3.7"; 18 18 19 19 src = fetchPypi { 20 20 inherit pname version; 21 - hash = "sha256-PKBwGomp4SWijekIKdGflvQd2x2LQ3kHbCntgsSvhs0="; 21 + hash = "sha256-6N64DyC9CyBZFBuHT9udauuMzjUxLqXywCsiWnigBAY="; 22 22 }; 23 23 24 24 buildInputs = [ ··· 42 42 43 43 meta = with lib; { 44 44 broken = stdenv.isDarwin; 45 - homepage = "https://github.com/dask/s3fs/"; 46 45 description = "A Pythonic file interface for S3"; 46 + homepage = "https://github.com/fsspec/s3fs"; 47 + changelog = "https://github.com/fsspec/s3fs/raw/${version}/docs/source/changelog.rst"; 47 48 license = licenses.bsd3; 48 49 maintainers = with maintainers; [ teh ]; 49 50 };