diff options
author | Pierre-Evariste Dagand <doc@evr.ist> | 2023-10-09 09:40:37 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2023-10-11 23:11:58 +0200 |
commit | 5b133876cca786c4dc107a28cc66db1879b36c29 (patch) | |
tree | 4e81802ae0d08e3fe746d01dba79bd0f8a075390 | |
parent | 085bee42640e928572b71159fc66d1bc52c541c0 (diff) |
gnu: Add python-google-auth-oauthlib.
* gnu/packages/python-web.scm (python-google-auth-oauthlib): New variable.
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
-rw-r--r-- | gnu/packages/python-web.scm | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/gnu/packages/python-web.scm b/gnu/packages/python-web.scm index d7fe634aba..0e52f2fdbd 100644 --- a/gnu/packages/python-web.scm +++ b/gnu/packages/python-web.scm @@ -5180,6 +5180,26 @@ Google search engine. Its module is called @code{googlesearch}.") for httplib2 transport.") (license license:asl2.0))) +(define-public python-google-auth-oauthlib + (package + (name "python-google-auth-oauthlib") + (version "1.1.0") + (source + (origin + (method url-fetch) + (uri (pypi-uri "google-auth-oauthlib" version)) + (sha256 + (base32 "1yvsjd1vh440nsh9vpnig23sq4k1ia749x5g1dwm7r4110xqrsl3")))) + (build-system python-build-system) + (propagated-inputs (list python-google-auth python-requests-oauthlib)) + (native-inputs (list python-flask)) + (home-page + "https://github.com/GoogleCloudPlatform/google-auth-library-python-oauthlib") + (synopsis "Google Authentication Library: oauthlib") + (description "This package provides a Google Authentication Library plugin +with oauthlib.") + (license license:asl2.0))) + (define-public whoogle-search (package (name "whoogle-search") |