guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

03/03: gnu: Add python-flask-login.


From: Marius Bakke
Subject: 03/03: gnu: Add python-flask-login.
Date: Mon, 13 Mar 2017 14:50:19 -0400 (EDT)

mbakke pushed a commit to branch master
in repository guix.

commit a71c863834448e2645518b31b60a96ef488dd761
Author: humanitiesNerd <address@hidden>
Date:   Sun Mar 12 21:02:08 2017 +0100

    gnu: Add python-flask-login.
    
    * gnu/packages/python.scm (python-flask-login, python2-flask-login): New
    variables.
    
    Signed-off-by: Marius Bakke <address@hidden>
---
 gnu/packages/python.scm | 29 +++++++++++++++++++++++++++++
 1 file changed, 29 insertions(+)

diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm
index f307b5c..333cfd5 100644
--- a/gnu/packages/python.scm
+++ b/gnu/packages/python.scm
@@ -13646,3 +13646,32 @@ It comes with safe defaults and easily configurable 
options.")
 
 (define-public python2-flask-htmlmin
   (package-with-python2 python-flask-htmlmin))
+
+(define-public python-flask-login
+  (package
+    (name "python-flask-login")
+    (version "0.4.0")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (string-append 
"https://github.com/maxcountryman/flask-login/archive/";
+                           version ".tar.gz"))
+       (file-name (string-append name "-" version ".tar.gz"))
+       (sha256
+        (base32
+         "1pdqp7a2gyb7k06xda004x0fi2w66s6kn2i0ndkqndmg12d83f9w"))))
+    (arguments
+     ;; Tests fail PEP8 compliance. See:
+     ;; https://github.com/maxcountryman/flask-login/issues/340
+     `(#:tests? #f))
+    (build-system python-build-system)
+    (home-page "https://github.com/maxcountryman/flask-login";)
+    (synopsis "User session management for Flask")
+    (description
+     "@code{Flask-Login} provides user session management for Flask.  It
+handles the common tasks of logging in, logging out, and remembering your
+users' sessions over extended periods of time.")
+    (license license:expat)))
+
+(define-public python2-flask-login
+  (package-with-python2 python-flask-login))



reply via email to

[Prev in Thread] Current Thread [Next in Thread]