diff options
| author | Nicolas Graves <ngraves@ngraves.fr> | 2025-12-24 00:59:25 +0100 |
|---|---|---|
| committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-12-28 21:36:59 +0000 |
| commit | 23c7b50e24ab1e4badfc154068ca7dc7f2b0d1f4 (patch) | |
| tree | b3281f5053ee23384038fb659ee3b1663d9b26c9 /gnu | |
| parent | acd77f2f2fb5bc4c5ae1660e974da7fbf51b4529 (diff) | |
gnu: python-google-auth-oauthlib: Update to 1.2.3.
* gnu/packages/python-web.scm (python-google-auth-oauthlib): Update to 1.2.3.
[source]: Switch to git-fetch.
[native-inputs]: Remove python-flask. Add python-click.
Change-Id: Ieb00845fbdbc72679e8b5b4c2d2ebdd61e0c95d8
Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
Diffstat (limited to 'gnu')
| -rw-r--r-- | gnu/packages/python-web.scm | 21 |
1 files changed, 11 insertions, 10 deletions
diff --git a/gnu/packages/python-web.scm b/gnu/packages/python-web.scm index 391d17abbe0..c692a03c34a 100644 --- a/gnu/packages/python-web.scm +++ b/gnu/packages/python-web.scm @@ -8828,22 +8828,23 @@ for httplib2 transport.") (define-public python-google-auth-oauthlib (package (name "python-google-auth-oauthlib") - (version "1.1.0") + (version "1.2.3") + (home-page + "https://github.com/GoogleCloudPlatform/\ +google-auth-library-python-oauthlib") (source (origin - (method url-fetch) - (uri (pypi-uri "google-auth-oauthlib" version)) + (method git-fetch) + (uri (git-reference + (url home-page) + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) (sha256 - (base32 "1yvsjd1vh440nsh9vpnig23sq4k1ia749x5g1dwm7r4110xqrsl3")))) + (base32 "1f269aaj02403shbj0iz4w16wwxr6im5fl42dkkk4mf2jw8ns46l")))) (build-system pyproject-build-system) (propagated-inputs (list python-google-auth python-requests-oauthlib)) (native-inputs - (list python-flask - python-pytest - python-mock - python-setuptools)) - (home-page - "https://github.com/GoogleCloudPlatform/google-auth-library-python-oauthlib") + (list python-click python-mock python-pytest python-setuptools)) (synopsis "Google Authentication Library: oauthlib") (description "This package provides a Google Authentication Library plugin with oauthlib.") |
