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
+4 -1
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 { };