Merge pull request #301986 from mrene/google-cloud-sdk/fix-storage-signurl

google-cloud-sdk: fix gcloud storage sign-url error due to missing pyopenssl dependency
This commit is contained in:
Marcus Ramberg
2024-05-12 08:40:41 +02:00
committed by GitHub
@@ -13,7 +13,7 @@ let
pythonEnv = python.withPackages (p: with p; [
cffi
cryptography
openssl
pyopenssl
crcmod
numpy
] ++ lib.optional (with-gce) google-compute-engine);