forked from mirrors/nixpkgs
python3Packages.google-compute-engine: fix build (#47267)
The dependency `distro` was missing. See https://hydra.nixos.org/build/81330387 Addresses #45960
This commit is contained in:
parent
841613d3fd
commit
baa7e52fe0
|
@ -6,6 +6,7 @@
|
|||
, utillinux
|
||||
, boto
|
||||
, setuptools
|
||||
, distro
|
||||
}:
|
||||
|
||||
buildPythonApplication rec {
|
||||
|
@ -42,7 +43,7 @@ buildPythonApplication rec {
|
|||
cp -r google_config/udev/*.rules $out/lib/udev/rules.d
|
||||
'';
|
||||
|
||||
propagatedBuildInputs = [ boto setuptools ];
|
||||
propagatedBuildInputs = [ boto setuptools distro ];
|
||||
|
||||
doCheck = false;
|
||||
|
||||
|
|
Loading…
Reference in a new issue