0
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-07-14 06:00:33 +03:00

google-cloud-sdk-gce: override python to 3.8

As the pytohn passed in py default seems to brreak the `boto` dependency.
This commit is contained in:
Norbert Melzer 2021-08-24 06:51:43 +02:00
parent c023f1bed5
commit 2e44dc9a9c

View file

@ -5528,7 +5528,10 @@ with pkgs;
google-cloud-sdk = callPackage ../tools/admin/google-cloud-sdk {
python = python3;
};
google-cloud-sdk-gce = google-cloud-sdk.override { with-gce = true; };
google-cloud-sdk-gce = google-cloud-sdk.override {
python = python38;
with-gce = true;
};
google-fonts = callPackage ../data/fonts/google-fonts { };