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
|
||||
, appdirs
|
||||
, requests
|
||||
, tqdm
|
||||
, paramiko
|
||||
, xxhash
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
@ -44,6 +47,14 @@ buildPythonPackage rec {
|
||||
"integration"
|
||||
];
|
||||
|
||||
passthru = {
|
||||
optional-dependencies = {
|
||||
progress = [ tqdm ];
|
||||
sftp = [ paramiko ];
|
||||
xxhash = [ xxhash ];
|
||||
};
|
||||
};
|
||||
|
||||
meta = with lib; {
|
||||
description = "A friend to fetch your data files.";
|
||||
homepage = "https://github.com/fatiando/pooch";
|
||||
|
Loading…
Reference in New Issue
Block a user