tangled
alpha
login
or
join now
tjh.dev
/
nixpkgs
0
fork
atom
nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
0
fork
atom
overview
issues
pulls
pipelines
python310Packages.gcsfs: 2022.8.2 -> 2022.10.0
Anthony Roussel
3 years ago
deea4c34
186bd908
+3
-2
1 changed file
expand all
collapse all
unified
split
pkgs
development
python-modules
gcsfs
default.nix
+3
-2
pkgs/development/python-modules/gcsfs/default.nix
reviewed
···
18
18
19
19
buildPythonPackage rec {
20
20
pname = "gcsfs";
21
21
-
version = "2022.8.2";
21
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
30
-
hash = "sha256-BnnKFrWz47izKc7nS8NR1Vze1x9kJdYBsQT2KEY9ghM=";
30
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
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
};