about summary refs log tree commit diff
path: root/pkgs/development/python-modules/habanero
diff options
context:
space:
mode:
authorJonathan Ringer <jonringer117@gmail.com>2021-04-20 15:01:08 -0700
committerJonathan Ringer <jonringer@users.noreply.github.com>2021-04-20 22:19:08 -0700
commit43d3569e0fc3b26246b16f20d0d98a6cf6bd8b29 (patch)
tree37632264268666ff36892872c13d518e36f1e25c /pkgs/development/python-modules/habanero
parente095b69930f6ef9e32d20d4e52fee1e48bd210a0 (diff)
python3Packages.habanero: add missing dep, tqdm
Diffstat (limited to 'pkgs/development/python-modules/habanero')
-rw-r--r--pkgs/development/python-modules/habanero/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/python-modules/habanero/default.nix b/pkgs/development/python-modules/habanero/default.nix
index cf3f80d7ed415..e24f2fc096911 100644
--- a/pkgs/development/python-modules/habanero/default.nix
+++ b/pkgs/development/python-modules/habanero/default.nix
@@ -1,5 +1,5 @@
 { buildPythonPackage, lib, fetchFromGitHub
-, requests
+, requests, tqdm
 , nose, vcrpy
 }:
 
@@ -15,7 +15,7 @@ buildPythonPackage rec {
     sha256 = "1d8yj9xz5qabcj57rpjzvg0jcscvzrpb0739mll29nijbsaimfr1";
   };
 
-  propagatedBuildInputs = [ requests ];
+  propagatedBuildInputs = [ requests tqdm ];
 
   checkInputs = [ nose vcrpy ];
   checkPhase = "make test";