gnu: python-s3transfer: Update to 0.2.0.
* gnu/packages/python-web.scm (python-s3transfer): Update to 0.2.0. [propagated-inputs]: Add python-urllib3.
This commit is contained in:
parent
bf5929c530
commit
5d3675371c
|
@ -2045,21 +2045,21 @@ Betamax.")
|
||||||
(define-public python-s3transfer
|
(define-public python-s3transfer
|
||||||
(package
|
(package
|
||||||
(name "python-s3transfer")
|
(name "python-s3transfer")
|
||||||
(version "0.1.13")
|
(version "0.2.0")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (pypi-uri "s3transfer" version))
|
(uri (pypi-uri "s3transfer" version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"1harvyn1s8v54n1w5h7c0lg4bgjh68aylhg28s8n174q53h1ip4h"))))
|
"08fhj73b1ai52hrs2q3nggshq3pswn1gq8ch3m009cb2v2vmqggj"))))
|
||||||
(build-system python-build-system)
|
(build-system python-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
`(#:phases
|
`(#:phases
|
||||||
(modify-phases %standard-phases
|
(modify-phases %standard-phases
|
||||||
(replace 'check
|
(replace 'check
|
||||||
(lambda _
|
(lambda _
|
||||||
;; 7 of the 'integration' tests require network access or login
|
;; Some of the 'integration' tests require network access or
|
||||||
;; credentials.
|
;; login credentials.
|
||||||
(invoke "nosetests" "--exclude=integration")
|
(invoke "nosetests" "--exclude=integration")
|
||||||
#t)))))
|
#t)))))
|
||||||
(native-inputs
|
(native-inputs
|
||||||
|
@ -2067,7 +2067,8 @@ Betamax.")
|
||||||
("python-mock" ,python-mock)
|
("python-mock" ,python-mock)
|
||||||
("python-nose" ,python-nose)))
|
("python-nose" ,python-nose)))
|
||||||
(propagated-inputs
|
(propagated-inputs
|
||||||
`(("python-botocore" ,python-botocore)))
|
`(("python-botocore" ,python-botocore)
|
||||||
|
("python-urllib3" ,python-urllib3)))
|
||||||
(synopsis "Amazon S3 Transfer Manager")
|
(synopsis "Amazon S3 Transfer Manager")
|
||||||
(description "S3transfer is a Python library for managing Amazon S3
|
(description "S3transfer is a Python library for managing Amazon S3
|
||||||
transfers.")
|
transfers.")
|
||||||
|
|
Loading…
Reference in New Issue