gnu: Add python-botocore-for-awscli.

* gnu/packages/python-xyz.scm (python-botocore-for-awscli): New variable.
This commit is contained in:
Ricardo Wurmus 2022-04-12 23:07:50 +02:00
parent 797478f77b
commit 9320410d76
No known key found for this signature in database
GPG key ID: 197A5888235FACAC

View file

@ -14654,6 +14654,20 @@ (define-public python-botocore
(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")