summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorOrivej Desh <orivej@gmx.fr>2017-12-21 18:36:20 +0000
committerOrivej Desh <orivej@gmx.fr>2017-12-21 18:36:20 +0000
commit3701531dbde5acec575eafd3cc5297985facb24b (patch)
treedd47c2b5d820022bb82e27a202207e3050992e53 /pkgs
parent694afb39eb29e46e809bf3612c0b0f25c49e9ba4 (diff)
downloadnixlib-3701531dbde5acec575eafd3cc5297985facb24b.tar
nixlib-3701531dbde5acec575eafd3cc5297985facb24b.tar.gz
nixlib-3701531dbde5acec575eafd3cc5297985facb24b.tar.bz2
nixlib-3701531dbde5acec575eafd3cc5297985facb24b.tar.lz
nixlib-3701531dbde5acec575eafd3cc5297985facb24b.tar.xz
nixlib-3701531dbde5acec575eafd3cc5297985facb24b.tar.zst
nixlib-3701531dbde5acec575eafd3cc5297985facb24b.zip
google-compute-engine: fix build by disable check phase
after it was activated by #32244
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/tools/virtualization/google-compute-engine/default.nix5
1 files changed, 2 insertions, 3 deletions
diff --git a/pkgs/tools/virtualization/google-compute-engine/default.nix b/pkgs/tools/virtualization/google-compute-engine/default.nix
index 4621fe8f1567..a923d73c03e4 100644
--- a/pkgs/tools/virtualization/google-compute-engine/default.nix
+++ b/pkgs/tools/virtualization/google-compute-engine/default.nix
@@ -7,7 +7,6 @@
 , utillinux
 , boto
 , setuptools
-, mock
 }:
 
 buildPythonApplication rec {
@@ -22,8 +21,6 @@ buildPythonApplication rec {
     sha256 = "0hlzcrf6yhzan25f4wzy1vbncak9whhqzrzza026ly3sq0smmjpg";
   };
 
-  buildInputs = [ mock ];
-
   postPatch = ''
     for file in $(find google_compute_engine -type f); do
       substituteInPlace "$file" \
@@ -48,6 +45,8 @@ buildPythonApplication rec {
 
   propagatedBuildInputs = [ boto setuptools ];
 
+  doCheck = false;
+
   meta = with lib; {
     description = "Google Compute Engine tools and services";
     homepage = "https://github.com/GoogleCloudPlatform/compute-image-packages";