gnu: python-minio: Update to 7.1.9.
* gnu/packages/python-web.scm (python-minio): Update to 7.1.9. [arguments]: Remove trailing #t. [propagated-inputs]: Remove PYTHON-CONFIGPARSER.
This commit is contained in:
parent
d9b497513f
commit
49f5c551fb
1 changed files with 4 additions and 6 deletions
|
@ -1423,26 +1423,24 @@ C, yielding parse times that can be a thirtieth of the html5lib parse times.")
|
||||||
(define-public python-minio
|
(define-public python-minio
|
||||||
(package
|
(package
|
||||||
(name "python-minio")
|
(name "python-minio")
|
||||||
(version "6.0.0")
|
(version "7.1.9")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (pypi-uri "minio" version))
|
(uri (pypi-uri "minio" version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"1cxpa0m7mdvpdbc1g6wlihq6ja4g4paxkl6f3q84bbnx07zpbllp"))))
|
"02nh865xbf2glxvcy70ir6gkcwqxl119zryfc70q7w0yjvkg64d7"))))
|
||||||
(build-system python-build-system)
|
(build-system python-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
'(#:phases (modify-phases %standard-phases
|
'(#:phases (modify-phases %standard-phases
|
||||||
(add-before 'check 'disable-failing-tests
|
(add-before 'check 'disable-failing-tests
|
||||||
(lambda _
|
(lambda _
|
||||||
;; This test requires network access.
|
;; This test requires network access.
|
||||||
(delete-file "tests/unit/credentials_test.py")
|
(delete-file "tests/unit/credentials_test.py"))))))
|
||||||
#t)))))
|
|
||||||
(native-inputs
|
(native-inputs
|
||||||
(list python-faker python-mock python-nose))
|
(list python-faker python-mock python-nose))
|
||||||
(propagated-inputs
|
(propagated-inputs
|
||||||
(list python-certifi python-configparser python-dateutil python-pytz
|
(list python-certifi python-dateutil python-pytz python-urllib3))
|
||||||
python-urllib3))
|
|
||||||
(home-page "https://github.com/minio/minio-py")
|
(home-page "https://github.com/minio/minio-py")
|
||||||
(synopsis "Programmatically access Amazon S3 from Python")
|
(synopsis "Programmatically access Amazon S3 from Python")
|
||||||
(description
|
(description
|
||||||
|
|
Reference in a new issue