diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2022-04-12 23:07:50 +0200 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2022-04-12 23:12:22 +0200 |
commit | 9320410d76b213853cb18adc3e2b1e7f0262fbb1 (patch) | |
tree | ed6a252b9101151e29a26472d8d69a81af572c43 /gnu/packages/python-xyz.scm | |
parent | 797478f77b1d3175c2bcb3578f32147d28d53430 (diff) |
gnu: Add python-botocore-for-awscli.
* gnu/packages/python-xyz.scm (python-botocore-for-awscli): New variable.
Diffstat (limited to 'gnu/packages/python-xyz.scm')
-rw-r--r-- | gnu/packages/python-xyz.scm | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 8484770719..4c01d39036 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -14654,6 +14654,20 @@ interface to the Amazon Web Services (AWS) API.") (define-public python2-botocore (package-with-python2 python-botocore)) +(define-public python-botocore-for-awscli + ;; Note: When updating botocore, also make sure that boto3 and awscli + ;; are compatible. + (package + (inherit python-botocore) + (version "1.22.11") + (source + (origin + (method url-fetch) + (uri (pypi-uri "botocore" version)) + (sha256 + (base32 + "1z7g2scyzvfq4yj9b4w911k7802ry1v6lqfnwq12l0ak7ywmsvrh")))))) + (define-public python-boto3 (package (name "python-boto3") |