gnu: Add python-flask-httpauth.
* gnu/packages/python.scm (python-flask-httpauth, python2-flask-httpauth): New variables.
This commit is contained in:
parent
abd8825f90
commit
18c6a7b4c8
|
@ -15869,3 +15869,26 @@ thread-local variable.")
|
||||||
|
|
||||||
(define-public python2-flask-principal
|
(define-public python2-flask-principal
|
||||||
(package-with-python2 python-flask-principal))
|
(package-with-python2 python-flask-principal))
|
||||||
|
|
||||||
|
(define-public python-flask-httpauth
|
||||||
|
(package
|
||||||
|
(name "python-flask-httpauth")
|
||||||
|
(version "3.2.3")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (pypi-uri "Flask-HTTPAuth" version))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"13gff5w1mqpzm5nccyg02v3ifb9ifqh5k866cssjhghhg6msfjsz"))))
|
||||||
|
(build-system python-build-system)
|
||||||
|
(native-inputs
|
||||||
|
`(("python-flask" ,python-flask)))
|
||||||
|
(home-page "http://github.com/miguelgrinberg/flask-httpauth/")
|
||||||
|
(synopsis "Basic and Digest HTTP authentication for Flask routes")
|
||||||
|
(description "@code{flask_httpauth} provides Basic and Digest HTTP
|
||||||
|
authentication for Flask routes.")
|
||||||
|
(license license:expat)))
|
||||||
|
|
||||||
|
(define-public python2-flask-httpauth
|
||||||
|
(package-with-python2 python-flask-httpauth))
|
||||||
|
|
Loading…
Reference in New Issue