forked from mirrors/nixpkgs
Merge pull request #226259 from cpcloud/nixpkgs-pooch-deps
This commit is contained in:
commit
0e9ef045b5
|
@ -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 a new issue