diff options
author | Leo Famulari <leo@famulari.name> | 2016-10-15 21:46:34 -0400 |
---|---|---|
committer | Leo Famulari <leo@famulari.name> | 2016-10-19 13:12:48 -0400 |
commit | d5ccf71ec6c0b384fb490e3783772c698866481b (patch) | |
tree | c6a59e84801eb95d18d41a1de77d41586771f050 /gnu | |
parent | 94cffc6386d2f4d5e8246cf13149892f2c35bea5 (diff) | |
download | patches-d5ccf71ec6c0b384fb490e3783772c698866481b.tar patches-d5ccf71ec6c0b384fb490e3783772c698866481b.tar.gz |
gnu: awscli: Update to 1.11.5.
* gnu/packages/python.scm (awscli): Update to 1.11.5.
[source]: Use pypi-uri.
[inputs]: Add python-s3transfer.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/python.scm | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm index a618dfe3b8..4b0e5b71ce 100644 --- a/gnu/packages/python.scm +++ b/gnu/packages/python.scm @@ -7907,16 +7907,14 @@ interface to the Amazon Web Services (AWS) API.") (define-public awscli (package (name "awscli") - (version "1.9.17") + (version "1.11.5") (source (origin (method url-fetch) - (uri (string-append - "https://pypi.python.org/packages/source/a/awscli/awscli-" - version ".tar.gz")) + (uri (pypi-uri name version)) (sha256 (base32 - "1nj7jqvlpq57hfhby1njsbf8303gapa3njc4dramr6p3ffzvfi2i")))) + "0lclasm0wnayd3b8zl9l91i32nbgrhh0ncf9lksss4cv0myfwmfg")))) (build-system python-build-system) (inputs `(("python-colorama" ,python-colorama) @@ -7928,7 +7926,8 @@ interface to the Amazon Web Services (AWS) API.") ("python-sphinx" ,python-sphinx) ("python-tox" ,python-tox) ("python-wheel" ,python-wheel) - ("python-botocore" ,python-botocore))) + ("python-botocore" ,python-botocore) + ("python-s3transfer" ,python-s3transfer))) (home-page "http://aws.amazon.com/cli/") (synopsis "Command line client for AWS") (description "AWS CLI provides a unified command line interface to the |