summaryrefslogtreecommitdiff
path: root/gnu/packages
diff options
context:
space:
mode:
authorJohn Kehayias <john@guixotic.coop>2025-12-17 15:19:15 -0500
committerJohn Kehayias <john@guixotic.coop>2025-12-17 15:19:15 -0500
commitc203995bf527c3d916d0e77ede4dee6fb93e83ff (patch)
tree808f569fc5478357b5409162172d050d8c7a6a48 /gnu/packages
parenta3a14c569380b4eefa33b7712d73efde87344110 (diff)
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
Diffstat (limited to 'gnu/packages')
-rw-r--r--gnu/packages/python-web.scm8
1 files changed, 6 insertions, 2 deletions
diff --git a/gnu/packages/python-web.scm b/gnu/packages/python-web.scm
index 6e582a77680..a9e8fa4c815 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")