google-compute-engine: fix build by disable check phase
after it was activated by #32244
This commit is contained in:
parent
694afb39eb
commit
3701531dbd
|
@ -7,7 +7,6 @@
|
||||||
, utillinux
|
, utillinux
|
||||||
, boto
|
, boto
|
||||||
, setuptools
|
, setuptools
|
||||||
, mock
|
|
||||||
}:
|
}:
|
||||||
|
|
||||||
buildPythonApplication rec {
|
buildPythonApplication rec {
|
||||||
|
@ -22,8 +21,6 @@ buildPythonApplication rec {
|
||||||
sha256 = "0hlzcrf6yhzan25f4wzy1vbncak9whhqzrzza026ly3sq0smmjpg";
|
sha256 = "0hlzcrf6yhzan25f4wzy1vbncak9whhqzrzza026ly3sq0smmjpg";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [ mock ];
|
|
||||||
|
|
||||||
postPatch = ''
|
postPatch = ''
|
||||||
for file in $(find google_compute_engine -type f); do
|
for file in $(find google_compute_engine -type f); do
|
||||||
substituteInPlace "$file" \
|
substituteInPlace "$file" \
|
||||||
|
@ -48,6 +45,8 @@ buildPythonApplication rec {
|
||||||
|
|
||||||
propagatedBuildInputs = [ boto setuptools ];
|
propagatedBuildInputs = [ boto setuptools ];
|
||||||
|
|
||||||
|
doCheck = false;
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
description = "Google Compute Engine tools and services";
|
description = "Google Compute Engine tools and services";
|
||||||
homepage = "https://github.com/GoogleCloudPlatform/compute-image-packages";
|
homepage = "https://github.com/GoogleCloudPlatform/compute-image-packages";
|
||||||
|
|
Loading…
Reference in New Issue