3
0
Fork 0
forked from mirrors/nixpkgs

Merge pull request #226259 from cpcloud/nixpkgs-pooch-deps

This commit is contained in:
Sandro 2023-04-15 22:49:46 +02:00 committed by GitHub
commit 0e9ef045b5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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";