From 3038031411ba0f35fa5b91273a6c6238d4289d5c Mon Sep 17 00:00:00 2001 From: humanitiesNerd Date: Sun, 12 Mar 2017 10:49:11 +0100 Subject: [PATCH 3/3] gnu: Add python-flask-login * gnu/packages/python.scm (python-flask-login): New variable. --- gnu/packages/python.scm | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm index 8b50b2909..077150ee9 100644 --- a/gnu/packages/python.scm +++ b/gnu/packages/python.scm @@ -13640,3 +13640,27 @@ It comes with safe defaults and an easily configurable set options.") (synopsis "Add the capability to minify responses while using Flask") (description "This package implements minification support for Flask responses.") (license license:bsd-3))) + +(define-public python-flask-login + (package + (name "python-flask-login") + (version "0.4.0") + (source + (origin + (method url-fetch) + (uri (pypi-uri "Flask-Login" version)) + (sha256 + (base32 + "19w2f33lglkyvxqnj3qghhxa4pr8mp13235k1bd557x52imkapnj")))) + (arguments + `(#:tests? #f)) + ;starting phase `check' + ;running "python setup.py" with command "test" and parameters () + ;make: *** No rule to make target 'check'. Stop. + ;phase `check' failed after 0.5 seconds + (build-system python-build-system) + (home-page + "https://github.com/maxcountryman/flask-login") + (synopsis "User session management for Flask") + (description "Flask does not provide user session management facilities so you are required to either roll your own or use an extension.") + (license license:expat))) -- 2.12.0