From 3701531dbde5acec575eafd3cc5297985facb24b Mon Sep 17 00:00:00 2001 From: Orivej Desh Date: Thu, 21 Dec 2017 18:36:20 +0000 Subject: [PATCH] google-compute-engine: fix build by disable check phase after it was activated by #32244 --- pkgs/tools/virtualization/google-compute-engine/default.nix | 5 ++--- 1 file 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";