1
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-06-21 17:01:10 +03:00
nixpkgs/pkgs/development/python-modules/fsspec/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

66 lines
1.5 KiB
Nix
Raw Normal View History

2019-08-08 17:46:01 -07:00
{ lib
, stdenv
2019-08-08 17:46:01 -07:00
, buildPythonPackage
, fetchFromGitHub
2019-08-08 17:46:01 -07:00
, pythonOlder
2020-06-20 07:31:37 +02:00
, pytestCheckHook
, numpy
, aiohttp
, pytest-vcr
, requests
, paramiko
, smbprotocol
2019-08-08 17:46:01 -07:00
}:
buildPythonPackage rec {
pname = "fsspec";
version = "2022.01.0";
disabled = pythonOlder "3.6";
2019-08-08 17:46:01 -07:00
src = fetchFromGitHub {
owner = "intake";
repo = "filesystem_spec";
rev = version;
sha256 = "sha256-iPe2q9hY3ZRIKQGpxrHda3t9G0AtbtohVcWdnAzlzCo=";
2019-08-08 17:46:01 -07:00
};
propagatedBuildInputs = [
aiohttp
paramiko
requests
smbprotocol
];
checkInputs = [
numpy
pytest-vcr
pytestCheckHook
];
__darwinAllowLocalNetworking = true;
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"
# test accesses this remote ftp server:
# https://ftp.fau.de/debian-cd/current/amd64/log/success
"test_find"
] ++ lib.optionals (stdenv.isDarwin) [
# 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
pythonImportsCheck = [ "fsspec" ];
2019-08-08 17:46:01 -07:00
meta = with lib; {
homepage = "https://github.com/intake/filesystem_spec";
description = "A specification that Python filesystems should adhere to";
2019-08-08 17:46:01 -07:00
license = licenses.bsd3;
maintainers = [ maintainers.costrouc ];
2019-08-08 17:46:01 -07:00
};
}