diff options
| author | Arun Isaac | 2025-11-09 11:09:13 +0000 |
|---|---|---|
| committer | Arun Isaac | 2025-11-09 11:09:13 +0000 |
| commit | ab3997764f87e46cc62c094770d6db02aecae4fe (patch) | |
| tree | 3976d806e4581de91bc1b12a9c64dcc674fa67ca /guix | |
| parent | a824096071e8509eed74a09cfc058bb77d9a7065 (diff) | |
| download | guix-forge-ab3997764f87e46cc62c094770d6db02aecae4fe.tar.gz guix-forge-ab3997764f87e46cc62c094770d6db02aecae4fe.tar.lz guix-forge-ab3997764f87e46cc62c094770d6db02aecae4fe.zip | |
klaus: Use python-httpauth from Guix upstream.
Diffstat (limited to 'guix')
| -rw-r--r-- | guix/forge/klaus.scm | 25 |
1 files changed, 2 insertions, 23 deletions
diff --git a/guix/forge/klaus.scm b/guix/forge/klaus.scm index 6ffb23c..8e0a8c3 100644 --- a/guix/forge/klaus.scm +++ b/guix/forge/klaus.scm @@ -1,5 +1,5 @@ ;;; guix-forge --- Guix software forge meta-service -;;; Copyright © 2023, 2024 Arun Isaac <arunisaac@systemreboot.net> +;;; Copyright © 2023–2025 Arun Isaac <arunisaac@systemreboot.net> ;;; Copyright © 2024 jgart <jgart@dismail.de> ;;; ;;; This file is part of guix-forge. @@ -27,7 +27,7 @@ #:use-module ((gnu packages python-build) #:select (python-setuptools python-wheel)) #:use-module ((gnu packages python-web) - #:select (python-flask python-werkzeug)) + #:select (python-flask python-httpauth python-werkzeug)) #:use-module ((gnu packages python-xyz) #:select (python-dulwich python-humanize python-pygments)) #:use-module (gnu system file-systems) @@ -39,27 +39,6 @@ #:use-module (guix packages) #:export (klaus-gunicorn-app)) -(define-public python-httpauth - (package - (name "python-httpauth") - (version "0.4.1") - (source (origin - (method url-fetch) - (uri (pypi-uri "httpauth" version)) - (sha256 - (base32 - "1m6rwvivg61l3h34hf6p6gkqmr69sb1c4k5ha379nxq0p8bfgahb")))) - (build-system pyproject-build-system) - (native-inputs - (list python-pytest - python-setuptools - python-wheel)) - (home-page "https://github.com/jonashaag/httpauth") - (synopsis "WSGI HTTP Digest Authentication middleware") - (description "@code{python-httpauth} is WSGI middleware that secures some/all -routes using HTTP Digest Authentication.") - (license license:bsd-2))) - (define-public python-klaus (package (name "python-klaus") |
