summary refs log tree commit diff
path: root/pkgs/development/python-modules/google_cloud_container
diff options
context:
space:
mode:
authorRobert Schütz <robert.schuetz@stud.uni-heidelberg.de>2019-02-03 11:56:30 +0100
committerRobert Schütz <robert.schuetz@stud.uni-heidelberg.de>2019-02-03 11:59:58 +0100
commitc3f6a178b1891e9bff706f000daf9296c927f069 (patch)
tree904a524f0927acc3b2d6a208751503cfa577becc /pkgs/development/python-modules/google_cloud_container
parent94bc037ce3e531c3f345d08004f2829791a730a3 (diff)
downloadnixpkgs-c3f6a178b1891e9bff706f000daf9296c927f069.tar
nixpkgs-c3f6a178b1891e9bff706f000daf9296c927f069.tar.gz
nixpkgs-c3f6a178b1891e9bff706f000daf9296c927f069.tar.bz2
nixpkgs-c3f6a178b1891e9bff706f000daf9296c927f069.tar.lz
nixpkgs-c3f6a178b1891e9bff706f000daf9296c927f069.tar.xz
nixpkgs-c3f6a178b1891e9bff706f000daf9296c927f069.tar.zst
nixpkgs-c3f6a178b1891e9bff706f000daf9296c927f069.zip
python.pkgs.google_could_*: add mock to checkInputs
Diffstat (limited to 'pkgs/development/python-modules/google_cloud_container')
-rw-r--r--pkgs/development/python-modules/google_cloud_container/default.nix3
1 files changed, 2 insertions, 1 deletions
diff --git a/pkgs/development/python-modules/google_cloud_container/default.nix b/pkgs/development/python-modules/google_cloud_container/default.nix
index 8941206c3fc..f0a47d7c30f 100644
--- a/pkgs/development/python-modules/google_cloud_container/default.nix
+++ b/pkgs/development/python-modules/google_cloud_container/default.nix
@@ -3,6 +3,7 @@
 , fetchPypi
 , google_api_core
 , pytest
+, mock
 }:
 
 buildPythonPackage rec {
@@ -14,7 +15,7 @@ buildPythonPackage rec {
     sha256 = "566834ef43e79917b112e3bd2848e84cfb0f4d7b565581607e2548f5c8e5d87a";
   };
 
-  checkInputs = [ pytest ];
+  checkInputs = [ pytest mock ];
   propagatedBuildInputs = [ google_api_core ];
 
   checkPhase = ''