Merge pull request #198908 from anthonyroussel/fsspec_2022_10_0

This commit is contained in:
Sandro 2022-11-10 22:41:25 +01:00 committed by GitHub
commit e37d7ea412
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 11 additions and 9 deletions

View file

@ -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 ];

View file

@ -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 ];
};

View file

@ -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 ];
};