me
/
guix
Archived
1
0
Fork 0

gnu: Add awscli-2.

* gnu/packages/python-web.scm (awscli-2): New variable.

Signed-off-by: Ludovic Courtès <ludo@gnu.org>
master
Zzull 2022-09-24 18:09:53 +02:00 committed by Ludovic Courtès
parent d7932b731f
commit 58f6b246a6
No known key found for this signature in database
GPG Key ID: 090B11993D9AEBB5
1 changed files with 21 additions and 0 deletions

View File

@ -57,6 +57,7 @@
;;; Copyright © 2022 Tomasz Jeneralczyk <tj@schwi.pl>
;;; Copyright © 2022 msimonin <matthieu.simonin@inria.fr>
;;; Copyright © 2022 Michael Rohleder <mike@rohleder.de>
;;; Copyright © 2022 Baptiste Strazzulla <bstrazzull@hotmail.fr>
;;;
;;; This file is part of GNU Guix.
;;;
@ -3262,6 +3263,26 @@ supports url redirection and retries, and also gzip and deflate decoding.")
Amazon Web Services (AWS) API.")
(license license:asl2.0)))
(define-public awscli-2
(package
(inherit awscli)
(name "awscli")
(version "2.2.0")
(source
(origin
(method url-fetch)
(uri (pypi-uri (string-append name "v2") version))
(sha256
(base32
"0g1icsy2l4n540gnhliypy830dfp08hpfc3rk12dlxgc9v3ra4wl"))))
(arguments
;; FIXME: The 'pypi' release does not contain tests.
'(#:tests? #f))
(inputs
(list python-importlib-resources
python-executor))))
(define-public python-wsgiproxy2
(package
(name "python-wsgiproxy2")