pythonPackages.pooch: init at 1.0.0
This commit is contained in:
parent
52298cb4f3
commit
eb8b3b4632
46
pkgs/development/python-modules/pooch/default.nix
Normal file
46
pkgs/development/python-modules/pooch/default.nix
Normal file
@ -0,0 +1,46 @@
|
|||||||
|
{ stdenv
|
||||||
|
, buildPythonPackage
|
||||||
|
, isPy27
|
||||||
|
, fetchPypi
|
||||||
|
, pytestCheckHook
|
||||||
|
, packaging
|
||||||
|
, appdirs
|
||||||
|
, requests
|
||||||
|
}:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
pname = "pooch";
|
||||||
|
version = "1.0.0";
|
||||||
|
disabled = isPy27;
|
||||||
|
|
||||||
|
src = fetchPypi {
|
||||||
|
inherit pname version;
|
||||||
|
sha256 = "1k2vinlhkzl7lzhvbz20x3a2r2zqqila0yxg3a3fax2r6qxbxxzi";
|
||||||
|
};
|
||||||
|
|
||||||
|
propagatedBuildInputs = [ packaging appdirs requests ];
|
||||||
|
|
||||||
|
checkInputs = [ pytestCheckHook ];
|
||||||
|
disabledTests = [
|
||||||
|
"pooch_custom_url"
|
||||||
|
"pooch_download"
|
||||||
|
"pooch_logging_level"
|
||||||
|
"pooch_update"
|
||||||
|
"pooch_corrupted"
|
||||||
|
"check_availability"
|
||||||
|
"downloader"
|
||||||
|
"test_fetch"
|
||||||
|
"decompress"
|
||||||
|
"extractprocessor_fails"
|
||||||
|
"processor"
|
||||||
|
"integration"
|
||||||
|
];
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
description = "A friend to fetch your data files.";
|
||||||
|
homepage = "https://github.com/fatiando/pooch";
|
||||||
|
license = licenses.bsd3;
|
||||||
|
maintainers = with maintainers; [ GuillaumeDesforges ];
|
||||||
|
};
|
||||||
|
|
||||||
|
}
|
@ -7852,6 +7852,8 @@ in {
|
|||||||
|
|
||||||
userpath = callPackage ../development/python-modules/userpath { };
|
userpath = callPackage ../development/python-modules/userpath { };
|
||||||
|
|
||||||
|
pooch = callPackage ../development/python-modules/pooch {};
|
||||||
|
|
||||||
});
|
});
|
||||||
|
|
||||||
in fix' (extends overrides packages)
|
in fix' (extends overrides packages)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user