gnu: python-google-api-client: Update to 1.12.8.
* gnu/packages/python-web.scm (python-google-api-client): Update to 1.12.8. [arguments]: Remove custom phase to adjust setup.py. [native-inputs]: Remove python-oauth2client, python-uritemplate. Move python-httplib2, python-six ... [propagated-inputs]: ... here. Add python-google-api-core-1, python-google-auth-1, python-google-auth-httplib2, python-uritemplate-3.master
parent
f541989f95
commit
f80215c7c4
|
@ -4832,28 +4832,24 @@ Google search engine. Its module is called @code{googlesearch}.")
|
||||||
(define-public python-google-api-client
|
(define-public python-google-api-client
|
||||||
(package
|
(package
|
||||||
(name "python-google-api-client")
|
(name "python-google-api-client")
|
||||||
(version "1.6.7")
|
(version "1.12.8")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (pypi-uri "google-api-python-client" version))
|
(uri (pypi-uri "google-api-python-client" version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"1wpbbbxfpy9mwxdy3kn352cb590ladv574j1aa2l4grjdqw3ln05"))))
|
"1fq89wifa9ymby655is246w5d54ixybffj5vz7lwzhpf8926ifgk"))))
|
||||||
(build-system python-build-system)
|
(build-system python-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
`(#:tests? #f ; tests require internet access
|
`(#:tests? #f)) ; tests require internet access
|
||||||
#:phases
|
(propagated-inputs
|
||||||
(modify-phases %standard-phases
|
(list python-google-api-core-1
|
||||||
(add-after 'unpack 'fix-setup-py
|
python-google-auth-1
|
||||||
(lambda _
|
python-google-auth-httplib2
|
||||||
(substitute* "setup.py"
|
python-httplib2
|
||||||
(("googleapiclient/discovery_cache")
|
python-six
|
||||||
"googleapiclient.discovery_cache"))
|
python-uritemplate-3))
|
||||||
#t)))))
|
|
||||||
(native-inputs
|
|
||||||
(list python-httplib2 python-six python-oauth2client
|
|
||||||
python-uritemplate))
|
|
||||||
(home-page "https://github.com/google/google-api-python-client")
|
(home-page "https://github.com/google/google-api-python-client")
|
||||||
(synopsis "Core Python library for accessing Google APIs")
|
(synopsis "Core Python library for accessing Google APIs")
|
||||||
(description "Python client library for Google's discovery based APIs")
|
(description "Python client library for Google's discovery based APIs")
|
||||||
|
|
Reference in New Issue