depot/third_party/nixpkgs/pkgs/development/python-modules/pooch/default.nix
Default email bcb2f287e1 Project import generated by Copybara.
GitOrigin-RevId: d603719ec6e294f034936c0d0dc06f689d91b6c3
2024-06-20 20:27:18 +05:30

80 lines
1.4 KiB
Nix

{
lib,
buildPythonPackage,
isPy27,
fetchPypi,
setuptools,
setuptools-scm,
wheel,
pytestCheckHook,
packaging,
platformdirs,
requests,
tqdm,
paramiko,
xxhash,
}:
buildPythonPackage rec {
pname = "pooch";
version = "1.8.1";
format = "pyproject";
disabled = isPy27;
src = fetchPypi {
inherit pname version;
hash = "sha256-J+9jCX3ZpuT50mlPXPvy8KXe+kT8yv7AjWAecx10YnA=";
};
nativeBuildInputs = [
setuptools
setuptools-scm
wheel
];
propagatedBuildInputs = [
packaging
platformdirs
requests
];
passthru = {
optional-dependencies = {
progress = [ tqdm ];
sftp = [ paramiko ];
xxhash = [ xxhash ];
};
};
preCheck = ''
export HOME=$TMPDIR
'';
nativeCheckInputs = [ pytestCheckHook ];
# tries to touch network
disabledTests = [
"check_availability"
"decompress"
"downloader"
"extractprocessor_fails"
"integration"
"pooch_corrupted"
"pooch_custom_url"
"pooch_download"
"pooch_logging_level"
"pooch_update"
"processor"
"test_fetch"
"test_load_registry_from_doi"
"test_retrieve"
"test_stream_download"
];
meta = with lib; {
description = "Friend to fetch your data files";
homepage = "https://github.com/fatiando/pooch";
license = licenses.bsd3;
maintainers = with maintainers; [ GuillaumeDesforges ];
};
}