depot/third_party/nixpkgs/pkgs/development/python-modules/pooch/default.nix
Default email fa5436e0a7 Project import generated by Copybara.
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
2024-06-05 17:53:02 +02:00

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 = "A friend to fetch your data files.";
homepage = "https://github.com/fatiando/pooch";
license = licenses.bsd3;
maintainers = with maintainers; [ GuillaumeDesforges ];
};
}