diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2025-01-06 13:44:15 +0100 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2025-01-20 21:37:37 +0100 |
commit | b17052496f98aa339105f6d82b5772a09f11ee99 (patch) | |
tree | 92a17129c4248231fba9bab36ab70300540a2431 /gnu/packages/python-web.scm | |
parent | 7694e6846fe87c1952132e3c303535f25a60ddc1 (diff) |
gnu: Remove python-flask-basicauth.
This project is abandoned and has test failures that indicate that it doesn't
actually work properly anymore.
* gnu/packages/python-web.scm (python-flask-basicauth): Remove variable.
Change-Id: I828bd5409d71d45c5549e74deba3edecbfac4572
Diffstat (limited to 'gnu/packages/python-web.scm')
-rw-r--r-- | gnu/packages/python-web.scm | 31 |
1 files changed, 0 insertions, 31 deletions
diff --git a/gnu/packages/python-web.scm b/gnu/packages/python-web.scm index 1e07700db2..807df8fcc1 100644 --- a/gnu/packages/python-web.scm +++ b/gnu/packages/python-web.scm @@ -5378,37 +5378,6 @@ Betamax that may possibly end up in the main package.") "This package contains a Flask module for creating REST APIs.") (license license:bsd-3))) -(define-public python-flask-basicauth - (package - (name "python-flask-basicauth") - (version "0.2.0") - (source - (origin - (method url-fetch) - (uri (pypi-uri "Flask-BasicAuth" version)) - (sha256 - (base32 - "1zq1spkjr4sjdnalpp8wl242kdqyk6fhbnhr8hi4r4f0km4bspnz")))) - (build-system python-build-system) - (arguments - `(#:phases (modify-phases %standard-phases - (add-after 'unpack 'fix-imports - (lambda _ - (substitute* '("docs/index.rst" - "docs/conf.py" - "flask_basicauth.py" - "test_basicauth.py") - (("flask\\.ext\\.basicauth") - "flask_basicauth")) - #t))))) - (propagated-inputs - (list python-flask)) - (home-page "https://github.com/jpvanhal/flask-basicauth") - (synopsis "HTTP basic access authentication for Flask") - (description - "This package provides HTTP basic access authentication for Flask.") - (license license:bsd-3))) - (define-public python-flask-htpasswd (package (name "python-flask-htpasswd") |