gnu: Add python-google-resumable-media.
* gnu/packages/python-web.scm (python-google-resumable-media): New variable.
This commit is contained in:
parent
359e2db4b2
commit
0873ab4d54
@ -6793,6 +6793,38 @@ of the CRC32C hashing algorithm.")
|
||||
server-to-server authentication mechanisms to access Google APIs.")
|
||||
(license license:asl2.0)))
|
||||
|
||||
(define-public python-google-resumable-media
|
||||
(package
|
||||
(name "python-google-resumable-media")
|
||||
(version "2.3.2")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (pypi-uri "google-resumable-media" version))
|
||||
(sha256
|
||||
(base32 "04qm6rd4mpbbym8ci5xrb6fymc3mmm8x2z9f43q5iwbr3s5lx4h6"))))
|
||||
(build-system python-build-system)
|
||||
(arguments
|
||||
`(#:phases
|
||||
(modify-phases %standard-phases
|
||||
(replace 'check
|
||||
(lambda* (#:key tests? #:allow-other-keys)
|
||||
(when tests?
|
||||
;; The system tests fail to find test_utils.retry.
|
||||
(delete-file-recursively "tests/system/")
|
||||
(invoke "pytest")))))))
|
||||
(propagated-inputs (list python-google-crc32c))
|
||||
(native-inputs
|
||||
(list python-google-auth
|
||||
python-pytest
|
||||
python-requests
|
||||
python-test-utils))
|
||||
(home-page "https://github.com/googleapis/google-resumable-media-python")
|
||||
(synopsis "Utilities for Google Media Downloads and Resumable Uploads")
|
||||
(description "This package provides utilities for Google Media Downloads
|
||||
and Resumable Uploads.")
|
||||
(license license:asl2.0)))
|
||||
|
||||
(define-public python-googleapis-common-protos
|
||||
(package
|
||||
(name "python-googleapis-common-protos")
|
||||
|
Loading…
Reference in New Issue
Block a user