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