mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-07-13 13:40:28 +03:00
pythonPackages.fsspec: init at 0.4.1
This commit is contained in:
parent
ed898bf0f4
commit
cfb84a0ee6
2 changed files with 28 additions and 0 deletions
26
pkgs/development/python-modules/fsspec/default.nix
Normal file
26
pkgs/development/python-modules/fsspec/default.nix
Normal file
|
@ -0,0 +1,26 @@
|
||||||
|
{ lib
|
||||||
|
, buildPythonPackage
|
||||||
|
, fetchPypi
|
||||||
|
, pythonOlder
|
||||||
|
}:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
pname = "fsspec";
|
||||||
|
version = "0.4.1";
|
||||||
|
|
||||||
|
disabled = pythonOlder "3.5";
|
||||||
|
|
||||||
|
src = fetchPypi {
|
||||||
|
inherit pname version;
|
||||||
|
sha256 = "0fvm1kdnnbf0pppv23mlfdqh220gcldmv72w2rdxp6ks1rcphzg3";
|
||||||
|
};
|
||||||
|
|
||||||
|
# no tests
|
||||||
|
doCheck = false;
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "A specification that python filesystems should adhere to.";
|
||||||
|
homepage = "https://github.com/intake/filesystem_spec";
|
||||||
|
license = licenses.bsd3;
|
||||||
|
};
|
||||||
|
}
|
|
@ -579,6 +579,8 @@ in {
|
||||||
|
|
||||||
filemagic = callPackage ../development/python-modules/filemagic { };
|
filemagic = callPackage ../development/python-modules/filemagic { };
|
||||||
|
|
||||||
|
fsspec = callPackage ../development/python-modules/fsspec { };
|
||||||
|
|
||||||
fuse = callPackage ../development/python-modules/fuse-python {
|
fuse = callPackage ../development/python-modules/fuse-python {
|
||||||
inherit (pkgs) fuse pkgconfig;
|
inherit (pkgs) fuse pkgconfig;
|
||||||
};
|
};
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue