3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/development/python-modules/fsspec/default.nix

27 lines
520 B
Nix
Raw Normal View History

2019-08-09 01:46:01 +01:00
{ lib
, buildPythonPackage
, fetchPypi
, pythonOlder
}:
buildPythonPackage rec {
pname = "fsspec";
2019-10-16 10:43:06 +01:00
version = "0.4.5";
2019-08-09 01:46:01 +01:00
disabled = pythonOlder "3.5";
src = fetchPypi {
inherit pname version;
2019-10-16 10:43:06 +01:00
sha256 = "824e406f5628cfde927ac945acf4ff70bc712b8bd204d7b99fe127993254db70";
2019-08-09 01:46:01 +01:00
};
# 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;
};
}