Skip to content

Commit

Permalink
python3Packages.google-compute-engine: fix build (#47267)
Browse files Browse the repository at this point in the history
The dependency `distro` was missing.
See https://hydra.nixos.org/build/81330387

Addresses #45960

(cherry picked from commit baa7e52)
  • Loading branch information
Ma27 authored and xeji committed Sep 24, 2018
1 parent 3cee0ce commit 32a5d08
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion pkgs/tools/virtualization/google-compute-engine/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
, utillinux
, boto
, setuptools
, distro
}:

buildPythonApplication rec {
Expand Down Expand Up @@ -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;

Expand Down

0 comments on commit 32a5d08

Please sign in to comment.