about summary refs log tree commit diff
path: root/pkgs/development/python-modules/cli-helpers
diff options
context:
space:
mode:
authorYannis Koutras <ioannis.koutras@gmail.com>2018-12-23 18:09:45 +0200
committerRobert Schütz <rschuetz17@gmail.com>2018-12-23 17:09:45 +0100
commit7cb982776ee55b9d42ba87d0a1faca7520caa488 (patch)
treee5facbb9b0d6be391d66f8df570565dd5b696860 /pkgs/development/python-modules/cli-helpers
parent07adbdf1e74d0b1cca4e9edecebd994a7fa1c83a (diff)
downloadnixlib-7cb982776ee55b9d42ba87d0a1faca7520caa488.tar
nixlib-7cb982776ee55b9d42ba87d0a1faca7520caa488.tar.gz
nixlib-7cb982776ee55b9d42ba87d0a1faca7520caa488.tar.bz2
nixlib-7cb982776ee55b9d42ba87d0a1faca7520caa488.tar.lz
nixlib-7cb982776ee55b9d42ba87d0a1faca7520caa488.tar.xz
nixlib-7cb982776ee55b9d42ba87d0a1faca7520caa488.tar.zst
nixlib-7cb982776ee55b9d42ba87d0a1faca7520caa488.zip
pythonPackages.cli-helpers: fix dependencies (#52692)
Diffstat (limited to 'pkgs/development/python-modules/cli-helpers')
-rw-r--r--pkgs/development/python-modules/cli-helpers/default.nix5
1 files changed, 4 insertions, 1 deletions
diff --git a/pkgs/development/python-modules/cli-helpers/default.nix b/pkgs/development/python-modules/cli-helpers/default.nix
index 799ad0473ea1..f2817d0fd325 100644
--- a/pkgs/development/python-modules/cli-helpers/default.nix
+++ b/pkgs/development/python-modules/cli-helpers/default.nix
@@ -1,11 +1,13 @@
 { lib
 , buildPythonPackage
 , fetchPypi
+, configobj
 , terminaltables
 , tabulate
 , backports_csv
 , wcwidth
 , pytest
+, mock
 , isPy27
 }:
 
@@ -19,12 +21,13 @@ buildPythonPackage rec {
   };
 
   propagatedBuildInputs = [
+    configobj
     terminaltables
     tabulate
     wcwidth
   ] ++ (lib.optionals isPy27 [ backports_csv ]);
 
-  checkInputs = [ pytest ];
+  checkInputs = [ pytest mock ];
 
   checkPhase = ''
     py.test