diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2024-11-14 11:33:18 +0000 |
---|---|---|
committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2024-11-18 20:19:42 +0000 |
commit | 25d340a0e33ef007a7bdb4e9d8c5bfde26683465 (patch) | |
tree | 79aa18036108b54736ba0d665a5c9e612a280d81 /gnu/packages | |
parent | 968726d89fea8a9aa514049ee1b953f375b62a46 (diff) | |
download | guix-25d340a0e33ef007a7bdb4e9d8c5bfde26683465.tar.gz guix-25d340a0e33ef007a7bdb4e9d8c5bfde26683465.zip |
gnu: awscli-2: Update to 2.3.1.
* gnu/packages/python-web.scm (awscli-2): Update to 2.3.1.
[name]: Rename to awscliv2.
Change-Id: I5fcc7afe66490513c6769c19f961a5fcb497d422
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/python-web.scm | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/gnu/packages/python-web.scm b/gnu/packages/python-web.scm index a80d037bdf..32662503a1 100644 --- a/gnu/packages/python-web.scm +++ b/gnu/packages/python-web.scm @@ -4200,18 +4200,20 @@ supports url redirection and retries, and also gzip and deflate decoding.") Services (AWS) API.") (license license:asl2.0))) +;; This is not an official release of awscli version 2, so it should not be +;; named awscli. (define-public awscli-2 (package (inherit awscli) - (name "awscli") - (version "2.2.0") + (name "awscliv2") + (version "2.3.1") (source (origin (method url-fetch) - (uri (pypi-uri (string-append name "v2") version)) + (uri (pypi-uri name version)) (sha256 (base32 - "0g1icsy2l4n540gnhliypy830dfp08hpfc3rk12dlxgc9v3ra4wl")))) + "1bpp6kmb75qdhgzsx69ki04345bfkzwnmg84y5x6nyfpph2g3fsz")))) (arguments ;; FIXME: The 'pypi' release does not contain tests. '(#:tests? #f)) |