This is an automated email from the git hooks/post-receive script.
guix_mirror_bot pushed a commit to branch master
in repository guix.
The following commit(s) were added to refs/heads/master by this push:
new c203995bf5 gnu: python-google-auth-oauthlib: Fix tests.
c203995bf5 is described below
commit c203995bf527c3d916d0e77ede4dee6fb93e83ff
Author: John Kehayias <[email protected]>
AuthorDate: Wed Dec 17 15:19:15 2025 -0500
gnu: python-google-auth-oauthlib: Fix tests.
* gnu/packages/python-web.scm (python-google-auth-oauthlib)[build-system]:
Switch to pyproject-build-system.
[native-inputs]: Add python-pytest, python-mock, and python-setuptools.
Change-Id: Ic846efd5298d666bd295492309f18c271aeb6997
---
gnu/packages/python-web.scm | 8 ++++++--
1 file changed, 6 insertions(+), 2 deletions(-)
diff --git a/gnu/packages/python-web.scm b/gnu/packages/python-web.scm
index 6e582a7768..a9e8fa4c81 100644
--- a/gnu/packages/python-web.scm
+++ b/gnu/packages/python-web.scm
@@ -8754,9 +8754,13 @@ for httplib2 transport.")
(uri (pypi-uri "google-auth-oauthlib" version))
(sha256
(base32 "1yvsjd1vh440nsh9vpnig23sq4k1ia749x5g1dwm7r4110xqrsl3"))))
- (build-system python-build-system)
+ (build-system pyproject-build-system)
(propagated-inputs (list python-google-auth python-requests-oauthlib))
- (native-inputs (list python-flask))
+ (native-inputs
+ (list python-flask
+ python-pytest
+ python-mock
+ python-setuptools))
(home-page
"https://github.com/GoogleCloudPlatform/google-auth-library-python-oauthlib")
(synopsis "Google Authentication Library: oauthlib")