43 lines
984 B
Nix
Raw Normal View History

2019-08-08 17:46:01 -07:00
{ lib
, buildPythonPackage
, fetchFromGitHub
2019-08-08 17:46:01 -07:00
, pythonOlder
2020-06-20 07:31:37 +02:00
, pytestCheckHook
, numpy
, stdenv
2019-08-08 17:46:01 -07:00
}:
buildPythonPackage rec {
pname = "fsspec";
version = "0.8.3";
2019-08-08 17:46:01 -07:00
disabled = pythonOlder "3.5";
src = fetchFromGitHub {
owner = "intake";
repo = "filesystem_spec";
rev = version;
sha256 = "0mfy0wxjfwwnp5q2afhhfbampf0fk71wsv512pi9yvrkzzfi1hga";
2019-08-08 17:46:01 -07:00
};
checkInputs = [
2020-06-20 07:31:37 +02:00
pytestCheckHook
numpy
];
2020-06-20 07:31:37 +02:00
disabledTests = [
# Test assumes user name is part of $HOME
# AssertionError: assert 'nixbld' in '/homeless-shelter/foo/bar'
"test_strip_protocol_expanduser"
] ++ lib.optionals (stdenv.isDarwin) [
"test_modified" # fails on hydra, works locally
"test_touch" # fails on hydra, works locally
2020-06-20 07:31:37 +02:00
];
2019-08-08 17:46:01 -07:00
meta = with lib; {
description = "A specification that python filesystems should adhere to";
homepage = "https://github.com/intake/filesystem_spec";
2019-08-08 17:46:01 -07:00
license = licenses.bsd3;
maintainers = [ maintainers.costrouc ];
2019-08-08 17:46:01 -07:00
};
}