summary refs log tree commit diff
path: root/pkgs/tools/virtualization
diff options
context:
space:
mode:
authorPhillip Cloud <cloud@standard.ai>2021-04-05 11:42:20 -0400
committerPhillip Cloud <cloud@standard.ai>2021-04-05 11:42:20 -0400
commit58dfe324776f9fca8896e0cc837f22a995b63c48 (patch)
treef8872f1f2e9ac0fac40bbbb23584f5cbacb549fc /pkgs/tools/virtualization
parent3568e9526dc3f781ac0da7b0f3cbf1db1910d161 (diff)
downloadnixpkgs-58dfe324776f9fca8896e0cc837f22a995b63c48.tar
nixpkgs-58dfe324776f9fca8896e0cc837f22a995b63c48.tar.gz
nixpkgs-58dfe324776f9fca8896e0cc837f22a995b63c48.tar.bz2
nixpkgs-58dfe324776f9fca8896e0cc837f22a995b63c48.tar.lz
nixpkgs-58dfe324776f9fca8896e0cc837f22a995b63c48.tar.xz
nixpkgs-58dfe324776f9fca8896e0cc837f22a995b63c48.tar.zst
nixpkgs-58dfe324776f9fca8896e0cc837f22a995b63c48.zip
google-compute-engine: fix imports check and set doCheck back to false
Diffstat (limited to 'pkgs/tools/virtualization')
-rw-r--r--pkgs/tools/virtualization/google-compute-engine/default.nix3
1 files changed, 2 insertions, 1 deletions
diff --git a/pkgs/tools/virtualization/google-compute-engine/default.nix b/pkgs/tools/virtualization/google-compute-engine/default.nix
index 4ec8fc112e8..ad187544aea 100644
--- a/pkgs/tools/virtualization/google-compute-engine/default.nix
+++ b/pkgs/tools/virtualization/google-compute-engine/default.nix
@@ -51,7 +51,8 @@ buildPythonPackage rec {
     patchShebangs $out/bin/*
   '';
 
-  pythonImportsCheck = [ "import google_compute_engine" ];
+  doCheck = false;
+  pythonImportsCheck = [ "google_compute_engine" ];
 
   meta = with lib; {
     description = "Google Compute Engine tools and services";