[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
02/02: gnu: Add python-flask-session.
From: |
guix-commits |
Subject: |
02/02: gnu: Add python-flask-session. |
Date: |
Sat, 28 Nov 2020 08:09:35 -0500 (EST) |
cbaines pushed a commit to branch master
in repository guix.
commit 9e2669690c80dc00973859edf732964f0a514d7b
Author: pinoaffe@airmail.cc <pinoaffe@airmail.cc>
AuthorDate: Sun Nov 22 19:15:13 2020 +0000
gnu: Add python-flask-session.
* gnu/packages/python-web.scm (python-flask-session): New variable.
Signed-off-by: Christopher Baines <mail@cbaines.net>
---
gnu/packages/python-web.scm | 24 ++++++++++++++++++++++++
1 file changed, 24 insertions(+)
diff --git a/gnu/packages/python-web.scm b/gnu/packages/python-web.scm
index 5cb974d..c1de44f 100644
--- a/gnu/packages/python-web.scm
+++ b/gnu/packages/python-web.scm
@@ -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")