diff options
author | Frederick Muriuki Muriithi | 2025-08-13 11:19:54 -0500 |
---|---|---|
committer | Frederick Muriuki Muriithi | 2025-08-13 11:19:54 -0500 |
commit | 491b09b5968937ca0147e1e7ebe2ee72b612f10c (patch) | |
tree | 1f0284715feaa6c4d6567e42f947269d0526dd49 | |
parent | ed5e0fba992a5de38244a33efc74f4a519a78394 (diff) | |
download | guix-bioinformatics-491b09b5968937ca0147e1e7ebe2ee72b612f10c.tar.gz |
python-authlib: Delete package that exists upstream.
* python-authlib is defined upstream, so we no longer need the definition here.
-rw-r--r-- | gn/packages/python-web.scm | 30 |
1 files changed, 0 insertions, 30 deletions
diff --git a/gn/packages/python-web.scm b/gn/packages/python-web.scm index e0bfacf..1f177ff 100644 --- a/gn/packages/python-web.scm +++ b/gn/packages/python-web.scm @@ -9,33 +9,3 @@ #:use-module (gnu packages databases) #:use-module (gnu packages python-web) #:use-module (gnu packages python-crypto)) - -(define-public python-authlib - (package - (name "python-authlib") - (version "1.5.0") - (source (origin - (method url-fetch) - (uri (pypi-uri "authlib" version)) - (sha256 - (base32 "08slfa8qm4ycjpwp8qcmixl59kw2k5bpp89rmhrab1b4h27vvn4g")))) - (build-system python-build-system) - (native-inputs - (list python-httpx - python-flask - python-django - python-werkzeug - python-starlette - python-sqlalchemy - python-pycryptodomex)) - (propagated-inputs - (list python-cryptography)) - (arguments `(#:tests? #f)) ;; temporarily deactivate tests - (home-page "https://authlib.org/") - (synopsis - "The ultimate Python library in building OAuth and OpenID Connect servers and clients.") - (description - "The ultimate Python library in building OAuth and OpenID Connect servers and -clients. It is designed from low level specifications implementations to high -level frameworks integrations, to meet the needs of everyone.") - (license license:bsd-3))) |