diff options
| author | Sergey Trofimov <sarg@sarg.org.ru> | 2025-10-07 18:48:43 +0200 |
|---|---|---|
| committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-10-08 21:38:03 +0100 |
| commit | 161bb6c268a94b54cdd611bb3c984e3b8b06a145 (patch) | |
| tree | 0674d526877bd7652e99db29b4f2891a6f088db5 /gnu/packages/python-web.scm | |
| parent | 220bd1f077b0fec2d0a76fbd591183ebbd537a95 (diff) | |
gnu: Add python-aiohttp-oauthlib.
* gnu/packages/python-web.scm (python-aiohttp-oauthlib): New variable.
Change-Id: I8391f8e3f4b0bbc1b1c06a43e414a9d5851f98d4
Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
Diffstat (limited to 'gnu/packages/python-web.scm')
| -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 0c78c0ef628..ecf73262541 100644 --- a/gnu/packages/python-web.scm +++ b/gnu/packages/python-web.scm @@ -1850,6 +1850,26 @@ Callback Hell. @end itemize") (license license:asl2.0))) +(define-public python-aiohttp-oauthlib + (package + (name "python-aiohttp-oauthlib") + (version "0.1.0") + (source + (origin + (method url-fetch) + (uri (pypi-uri "aiohttp-oauthlib" version)) + (sha256 + (base32 "1dwk0gby27xm7384qyz2p7zw9dqhjx7m8fhfk172w36xknjx2g49")))) + (build-system pyproject-build-system) + (arguments (list #:tests? #f)) ; none included + (propagated-inputs (list python-aiohttp python-oauthlib)) + (native-inputs (list python-setuptools python-setuptools-scm)) + (home-page "https://git.sr.ht/~whynothugo/aiohttp-oauthlib") + (synopsis "OAuthlib authentication support for aiohttp") + (description "Aiohttp-oauthlib uses the Python aiohttp and OAuthlib libraries to +provide an easy-to-use Python interface for building OAuth1 and OAuth2 clients.") + (license license:isc))) + (define-public python-aiohttp-client-cache (package (name "python-aiohttp-client-cache") |
