gnu: python-flask: Update to 2.1.1.
* gnu/packages/python-web.scm (python-flask): Update to 2.1.1. [propagated-inputs]: Add python-asgiref and python-importlib-metadata. [home-page]: Update.master
parent
2b22de8923
commit
cce678ab82
|
@ -2991,13 +2991,13 @@ minimum of WSGI.")
|
||||||
(define-public python-flask
|
(define-public python-flask
|
||||||
(package
|
(package
|
||||||
(name "python-flask")
|
(name "python-flask")
|
||||||
(version "2.0.2")
|
(version "2.1.1")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (pypi-uri "Flask" version))
|
(uri (pypi-uri "Flask" version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"1qilnrdakhbw5k951kczdy8ia0wczh0dpp1vi4qhgmfx6klvhbvv"))))
|
"1j0rjly2yhbm566lq2s8543fs7fz86f77abps539djcfalzbvjd8"))))
|
||||||
(build-system python-build-system)
|
(build-system python-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
'(#:phases
|
'(#:phases
|
||||||
|
@ -3009,8 +3009,13 @@ minimum of WSGI.")
|
||||||
(native-inputs
|
(native-inputs
|
||||||
(list python-pytest))
|
(list python-pytest))
|
||||||
(propagated-inputs
|
(propagated-inputs
|
||||||
(list python-itsdangerous python-jinja2 python-click python-werkzeug))
|
(list python-asgiref ;async extra
|
||||||
(home-page "https://www.palletsprojects.com/p/flask/")
|
python-click
|
||||||
|
python-importlib-metadata
|
||||||
|
python-itsdangerous
|
||||||
|
python-jinja2
|
||||||
|
python-werkzeug))
|
||||||
|
(home-page "https://palletsprojects.com/p/flask/")
|
||||||
(synopsis "Microframework based on Werkzeug, Jinja2 and good intentions")
|
(synopsis "Microframework based on Werkzeug, Jinja2 and good intentions")
|
||||||
(description "Flask is a micro web framework based on the Werkzeug toolkit
|
(description "Flask is a micro web framework based on the Werkzeug toolkit
|
||||||
and Jinja2 template engine. It is called a micro framework because it does not
|
and Jinja2 template engine. It is called a micro framework because it does not
|
||||||
|
|
Reference in New Issue