diff options
author | Zzull <bstrazzull@hotmail.fr> | 2022-09-24 18:09:53 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2022-10-04 18:15:36 +0200 |
commit | 58f6b246a6c3f3cf1cfdcce6bd2cdb3a26c23c9b (patch) | |
tree | b398d10d5578fadc3a222e1fdcf4df7b9fd8172d | |
parent | gnu: Add python-executor. (diff) | |
download | guix-58f6b246a6c3f3cf1cfdcce6bd2cdb3a26c23c9b.tar.gz guix-58f6b246a6c3f3cf1cfdcce6bd2cdb3a26c23c9b.tar.bz2 guix-58f6b246a6c3f3cf1cfdcce6bd2cdb3a26c23c9b.tar.xz |
gnu: Add awscli-2.
* gnu/packages/python-web.scm (awscli-2): New variable.
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
-rw-r--r-- | gnu/packages/python-web.scm | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/gnu/packages/python-web.scm b/gnu/packages/python-web.scm index 1f0b43d1ad..6a9d6ee61d 100644 --- a/gnu/packages/python-web.scm +++ b/gnu/packages/python-web.scm | |||
@@ -57,6 +57,7 @@ | |||
57 | ;;; Copyright © 2022 Tomasz Jeneralczyk <tj@schwi.pl> | 57 | ;;; Copyright © 2022 Tomasz Jeneralczyk <tj@schwi.pl> |
58 | ;;; Copyright © 2022 msimonin <matthieu.simonin@inria.fr> | 58 | ;;; Copyright © 2022 msimonin <matthieu.simonin@inria.fr> |
59 | ;;; Copyright © 2022 Michael Rohleder <mike@rohleder.de> | 59 | ;;; Copyright © 2022 Michael Rohleder <mike@rohleder.de> |
60 | ;;; Copyright © 2022 Baptiste Strazzulla <bstrazzull@hotmail.fr> | ||
60 | ;;; | 61 | ;;; |
61 | ;;; This file is part of GNU Guix. | 62 | ;;; This file is part of GNU Guix. |
62 | ;;; | 63 | ;;; |
@@ -3262,6 +3263,26 @@ supports url redirection and retries, and also gzip and deflate decoding.") | |||
3262 | Amazon Web Services (AWS) API.") | 3263 | Amazon Web Services (AWS) API.") |
3263 | (license license:asl2.0))) | 3264 | (license license:asl2.0))) |
3264 | 3265 | ||
3266 | (define-public awscli-2 | ||
3267 | (package | ||
3268 | (inherit awscli) | ||
3269 | (name "awscli") | ||
3270 | (version "2.2.0") | ||
3271 | (source | ||
3272 | (origin | ||
3273 | (method url-fetch) | ||
3274 | (uri (pypi-uri (string-append name "v2") version)) | ||
3275 | (sha256 | ||
3276 | (base32 | ||
3277 | "0g1icsy2l4n540gnhliypy830dfp08hpfc3rk12dlxgc9v3ra4wl")))) | ||
3278 | (arguments | ||
3279 | ;; FIXME: The 'pypi' release does not contain tests. | ||
3280 | '(#:tests? #f)) | ||
3281 | (inputs | ||
3282 | (list python-importlib-resources | ||
3283 | python-executor)))) | ||
3284 | |||
3285 | |||
3265 | (define-public python-wsgiproxy2 | 3286 | (define-public python-wsgiproxy2 |
3266 | (package | 3287 | (package |
3267 | (name "python-wsgiproxy2") | 3288 | (name "python-wsgiproxy2") |