2019-08-08 17:46:01 -07:00
|
|
|
|
{ lib
|
2021-06-08 20:19:33 +02:00
|
|
|
|
, stdenv
|
2019-08-08 17:46:01 -07:00
|
|
|
|
, buildPythonPackage
|
2019-12-29 17:52:40 -05:00
|
|
|
|
, fetchFromGitHub
|
2019-08-08 17:46:01 -07:00
|
|
|
|
, pythonOlder
|
2020-06-20 07:31:37 +02:00
|
|
|
|
, pytestCheckHook
|
|
|
|
|
, numpy
|
2021-04-22 08:04:23 -07:00
|
|
|
|
, aiohttp
|
|
|
|
|
, pytest-vcr
|
|
|
|
|
, requests
|
2021-06-08 20:19:33 +02:00
|
|
|
|
, paramiko
|
|
|
|
|
, smbprotocol
|
2019-08-08 17:46:01 -07:00
|
|
|
|
}:
|
|
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
|
pname = "fsspec";
|
2022-02-14 19:14:55 +01:00
|
|
|
|
version = "2022.01.0";
|
2021-06-08 20:19:33 +02:00
|
|
|
|
disabled = pythonOlder "3.6";
|
2019-08-08 17:46:01 -07:00
|
|
|
|
|
2019-12-29 17:52:40 -05:00
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
|
owner = "intake";
|
|
|
|
|
repo = "filesystem_spec";
|
|
|
|
|
rev = version;
|
2022-02-14 19:14:55 +01:00
|
|
|
|
sha256 = "sha256-iPe2q9hY3ZRIKQGpxrHda3t9G0AtbtohVcWdnAzlzCo=";
|
2019-08-08 17:46:01 -07:00
|
|
|
|
};
|
|
|
|
|
|
2021-06-08 20:19:33 +02:00
|
|
|
|
propagatedBuildInputs = [
|
|
|
|
|
aiohttp
|
|
|
|
|
paramiko
|
|
|
|
|
requests
|
|
|
|
|
smbprotocol
|
|
|
|
|
];
|
2021-04-22 08:04:23 -07:00
|
|
|
|
|
2021-06-08 20:19:33 +02:00
|
|
|
|
checkInputs = [
|
|
|
|
|
numpy
|
|
|
|
|
pytest-vcr
|
|
|
|
|
pytestCheckHook
|
|
|
|
|
];
|
2021-04-22 08:04:23 -07:00
|
|
|
|
|
2021-06-08 20:19:33 +02:00
|
|
|
|
__darwinAllowLocalNetworking = true;
|
2019-12-29 17:52:40 -05:00
|
|
|
|
|
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"
|
2021-04-22 08:04:23 -07:00
|
|
|
|
# test accesses this remote ftp server:
|
|
|
|
|
# https://ftp.fau.de/debian-cd/current/amd64/log/success
|
|
|
|
|
"test_find"
|
2020-09-29 13:56:46 +02:00
|
|
|
|
] ++ lib.optionals (stdenv.isDarwin) [
|
2020-09-30 16:45:31 +02:00
|
|
|
|
# works locally on APFS, fails on hydra with AssertionError comparing timestamps
|
|
|
|
|
# darwin hydra builder uses HFS+ and has only one second timestamp resolution
|
|
|
|
|
# this two tests however, assume nanosecond resolution
|
|
|
|
|
"test_modified"
|
|
|
|
|
"test_touch"
|
2020-06-20 07:31:37 +02:00
|
|
|
|
];
|
2019-08-08 17:46:01 -07:00
|
|
|
|
|
2021-06-08 20:19:33 +02:00
|
|
|
|
pythonImportsCheck = [ "fsspec" ];
|
|
|
|
|
|
2019-08-08 17:46:01 -07:00
|
|
|
|
meta = with lib; {
|
2020-03-31 21:11:51 -04:00
|
|
|
|
homepage = "https://github.com/intake/filesystem_spec";
|
2021-08-07 17:19:34 -03:00
|
|
|
|
description = "A specification that Python filesystems should adhere to";
|
2019-08-08 17:46:01 -07:00
|
|
|
|
license = licenses.bsd3;
|
2019-12-29 17:52:40 -05:00
|
|
|
|
maintainers = [ maintainers.costrouc ];
|
2019-08-08 17:46:01 -07:00
|
|
|
|
};
|
|
|
|
|
}
|