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
commit 711b534c41
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -13,7 +13,7 @@ let
pythonEnv = python.withPackages (p: with p; [
cffi
cryptography
openssl
pyopenssl
crcmod
numpy
] ++ lib.optional (with-gce) google-compute-engine);