summary refs log tree commit diff
path: root/pkgs/development/python-modules/envs
diff options
context:
space:
mode:
authorRobert Schütz <robert.schuetz@stud.uni-heidelberg.de>2019-03-21 12:27:03 +0100
committerRobert Schütz <robert.schuetz@stud.uni-heidelberg.de>2019-03-21 12:27:03 +0100
commit76bfc09ff3403fa23f0837e4f43645fd8c72338e (patch)
tree5353094701cb41549db0396df32ec3e4a6c9d65e /pkgs/development/python-modules/envs
parent19aaebe41988eb8f05954f017e743889b924c1f5 (diff)
downloadnixpkgs-76bfc09ff3403fa23f0837e4f43645fd8c72338e.tar
nixpkgs-76bfc09ff3403fa23f0837e4f43645fd8c72338e.tar.gz
nixpkgs-76bfc09ff3403fa23f0837e4f43645fd8c72338e.tar.bz2
nixpkgs-76bfc09ff3403fa23f0837e4f43645fd8c72338e.tar.lz
nixpkgs-76bfc09ff3403fa23f0837e4f43645fd8c72338e.tar.xz
nixpkgs-76bfc09ff3403fa23f0837e4f43645fd8c72338e.tar.zst
nixpkgs-76bfc09ff3403fa23f0837e4f43645fd8c72338e.zip
python.pkgs.envs: fix build
Diffstat (limited to 'pkgs/development/python-modules/envs')
-rw-r--r--pkgs/development/python-modules/envs/default.nix5
1 files changed, 3 insertions, 2 deletions
diff --git a/pkgs/development/python-modules/envs/default.nix b/pkgs/development/python-modules/envs/default.nix
index e39292049da..600cb3b0320 100644
--- a/pkgs/development/python-modules/envs/default.nix
+++ b/pkgs/development/python-modules/envs/default.nix
@@ -1,5 +1,6 @@
 { lib, buildPythonPackage, fetchPypi
-, click, jinja2, terminaltables }:
+, mock, jinja2, click, terminaltables
+}:
 
 buildPythonPackage rec {
   pname = "envs";
@@ -10,7 +11,7 @@ buildPythonPackage rec {
     sha256 = "ccf5cd85ddb8ed335e39ed8a22e0d23658f5a6d7da430f225e6f750c6f50ae42";
   };
 
-  checkInputs = [ click jinja2 terminaltables ];
+  checkInputs = [ mock jinja2 click terminaltables ];
 
   meta = with lib; {
     description = "Easy access to environment variables from Python";