nixpkgs/pkgs/development/python-modules/fsspec/default.nix

27 lines
520 B
Nix
Raw Normal View History

2019-08-09 02:46:01 +02:00
{ lib
, buildPythonPackage
, fetchPypi
, pythonOlder
}:
buildPythonPackage rec {
pname = "fsspec";
2019-10-24 08:47:31 +02:00
version = "0.5.2";
2019-08-09 02:46:01 +02:00
disabled = pythonOlder "3.5";
src = fetchPypi {
inherit pname version;
2019-10-24 08:47:31 +02:00
sha256 = "6531a5fa9ea6bf27a5180d225558a8a7aa5d7c3cbf7e8b146dd37ac699017937";
2019-08-09 02:46:01 +02: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;
};
}