gnu: Add python-google-resumable-media.

* gnu/packages/python-web.scm (python-google-resumable-media): New variable.
This commit is contained in:
Ricardo Wurmus 2022-05-20 13:24:02 +02:00
parent 359e2db4b2
commit 0873ab4d54
No known key found for this signature in database
GPG Key ID: 197A5888235FACAC

View File

@ -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")