aboutsummaryrefslogtreecommitdiff
path: root/.guix/modules/gn-auth.scm
diff options
context:
space:
mode:
authorFrederick Muriuki Muriithi2023-08-16 06:05:36 +0300
committerFrederick Muriuki Muriithi2023-08-16 06:07:17 +0300
commitd7866b6f96fc903f3759ec7d515913f2e25b555d (patch)
treef0e429306236e4d470bebaf0e8e542ca97181014 /.guix/modules/gn-auth.scm
parent59dc1a94f48899329bcd653df06129b937b06fb7 (diff)
downloadgn-auth-d7866b6f96fc903f3759ec7d515913f2e25b555d.tar.gz
Remove definition (use on in `guix-bioinformatics`)
Diffstat (limited to '.guix/modules/gn-auth.scm')
-rw-r--r--.guix/modules/gn-auth.scm34
1 files changed, 4 insertions, 30 deletions
diff --git a/.guix/modules/gn-auth.scm b/.guix/modules/gn-auth.scm
index 315bdca..0349daf 100644
--- a/.guix/modules/gn-auth.scm
+++ b/.guix/modules/gn-auth.scm
@@ -23,7 +23,10 @@
#:use-module (gnu packages python-check)
#:use-module (gnu packages python-crypto)
- #:use-module (gnu packages databases))
+ #:use-module (gnu packages databases)
+
+ ;; Packages from guix-bioinformatics
+ #:use-module (gnu packages python-web))
(define %source-dir (dirname (dirname (dirname (dirname (dirname (current-filename)))))))
@@ -78,35 +81,6 @@
(or (git-predicate %source-dir)
(const #t)))
-(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)))
-
(define-public gn-auth
(package
(name "gn-auth")