gnu: Add python-flask-session.

* gnu/packages/python-web.scm (python-flask-session): New variable.

Signed-off-by: Christopher Baines <mail@cbaines.net>
This commit is contained in:
pinoaffe@airmail.cc 2020-11-22 19:15:13 +00:00 committed by Christopher Baines
parent 466a9de119
commit 9e2669690c
No known key found for this signature in database
GPG Key ID: 5E28A33B0B84F577

View File

@ -1010,6 +1010,30 @@ Origin Resource Sharing}, making cross-origin AJAX possible.")
into Jinja2 by default.")
(license license:bsd-3)))
(define-public python-flask-session
(package
(name "python-flask-session")
(version "0.3.2")
(source
(origin
(method url-fetch)
(uri (pypi-uri "Flask-Session" version))
(sha256
(base32
"08s4msg8jzb8vgb9bd491zvrzhrdldxdw6vimb0kx5kgy2xy4s07"))))
(build-system python-build-system)
(arguments
'(#:tests? #f)) ; Tests require the various storage backends to be present
(propagated-inputs
`(("python-flask" ,python-flask)))
(home-page "https://github.com/fengsp/flask-session")
(synopsis "Adds server-side session support to your Flask application")
(description
"Flask-Session is an extension for Flask that adds support for
Server-side sessions, with a variety of different backends for session
storage.")
(license license:bsd-3)))
(define-public python-html5lib
(package
(name "python-html5lib")