mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-12 00:33:10 +00:00
python3Packages.pooch: add optional-dependencies
This commit is contained in:
parent
99a95083df
commit
310a715b99
@ -7,6 +7,9 @@
|
|||||||
, packaging
|
, packaging
|
||||||
, appdirs
|
, appdirs
|
||||||
, requests
|
, requests
|
||||||
|
, tqdm
|
||||||
|
, paramiko
|
||||||
|
, xxhash
|
||||||
}:
|
}:
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
@ -44,6 +47,14 @@ buildPythonPackage rec {
|
|||||||
"integration"
|
"integration"
|
||||||
];
|
];
|
||||||
|
|
||||||
|
passthru = {
|
||||||
|
optional-dependencies = {
|
||||||
|
progress = [ tqdm ];
|
||||||
|
sftp = [ paramiko ];
|
||||||
|
xxhash = [ xxhash ];
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
description = "A friend to fetch your data files.";
|
description = "A friend to fetch your data files.";
|
||||||
homepage = "https://github.com/fatiando/pooch";
|
homepage = "https://github.com/fatiando/pooch";
|
||||||
|
Loading…
Reference in New Issue
Block a user