diff options
author | Shepherd on Tux02 | 2024-06-20 07:26:21 -0500 |
---|---|---|
committer | Shepherd on Tux02 | 2024-06-20 07:26:21 -0500 |
commit | f0f8dc84eca7088177797f84db05314537615c77 (patch) | |
tree | 5a7408a19c92b0c4d536916269425d883c4f06ca /gn/packages/python-web.scm | |
parent | 951e77b10c84889f29c1f2322087c796cedb375a (diff) | |
parent | 48af9393cf186230e08b0fa6f7f443bc818408d2 (diff) | |
download | guix-bioinformatics-f0f8dc84eca7088177797f84db05314537615c77.tar.gz |
Merge branch 'master' of https://gitlab.com/genenetwork/guix-bioinformatics
Diffstat (limited to 'gn/packages/python-web.scm')
-rw-r--r-- | gn/packages/python-web.scm | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/gn/packages/python-web.scm b/gn/packages/python-web.scm new file mode 100644 index 0000000..88478a5 --- /dev/null +++ b/gn/packages/python-web.scm @@ -0,0 +1,40 @@ +(define-module (gn packages python-web) + ;; core guix packages + #:use-module (guix packages) + #:use-module (guix download) + #:use-module (guix build-system python) + #:use-module ((guix licenses) #:prefix license:) + ;; packages modules + #:use-module (gnu packages django) + #: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.2.0") + (source (origin + (method url-fetch) + (uri (pypi-uri "Authlib" version)) + (sha256 + (base32 + "178ycfypdv1hy4zjm09rmysxakmwch2n6a5wypwmx4d5hc4fi8sg")))) + (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))) |