google-compute-engine: fix build by disable check phase

after it was activated by #32244
This commit is contained in:
Orivej Desh 2017-12-21 18:36:20 +00:00
parent 694afb39eb
commit 3701531dbd

View file

@ -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";