mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-13 06:36:37 -05:00
gnu: Add python-flask-jwt.
* gnu/packages/python-web.scm (python-flask-jwt): New variable.
This commit is contained in:
parent
be9e8c3963
commit
49ec1fbc8f
1 changed files with 32 additions and 0 deletions
|
@ -3889,6 +3889,38 @@ (define-public python-slimit
|
|||
pretty printer and a tree visitor.")
|
||||
(license license:expat)))
|
||||
|
||||
(define-public python-flask-jwt
|
||||
(package
|
||||
(name "python-flask-jwt")
|
||||
(version "0.3.2")
|
||||
(source (origin
|
||||
(method url-fetch)
|
||||
(uri (pypi-uri "Flask-JWT" version))
|
||||
(sha256
|
||||
(base32
|
||||
"1bfh7cr0sf65rn4h1q67472y6ml9s8c4k0xxfhrwvwg0plpngh29"))))
|
||||
(build-system pyproject-build-system)
|
||||
(arguments
|
||||
(list
|
||||
#:phases
|
||||
'(modify-phases %standard-phases
|
||||
(add-after 'unpack 'compatibility
|
||||
(lambda _
|
||||
(substitute* "setup.cfg"
|
||||
(("\\[pytest\\]") "[tool:pytest]"))
|
||||
(substitute* "requirements.txt"
|
||||
(("PyJWT>=1.4.0,<1.5.0") "PyJWT>=2.0.0"))
|
||||
(substitute* '("tests/test_jwt.py"
|
||||
"flask_jwt/__init__.py")
|
||||
(("access_token.decode\\('utf-8'\\)") "access_token")))))))
|
||||
(propagated-inputs (list python-flask python-pyjwt))
|
||||
(native-inputs (list python-pytest))
|
||||
(home-page "https://github.com/mattupstate/flask-jwt")
|
||||
(synopsis "JWT token authentication for Flask apps")
|
||||
(description "This package implements JWT token authentication for Flask
|
||||
apps.")
|
||||
(license license:expat)))
|
||||
|
||||
(define-public python-flask-restful
|
||||
(package
|
||||
(name "python-flask-restful")
|
||||
|
|
Loading…
Reference in a new issue