guix-commits
[Top][All Lists]
Advanced

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

03/04: gnu: Add python-flask-basicauth.


From: Hartmut Goebel
Subject: 03/04: gnu: Add python-flask-basicauth.
Date: Sun, 23 Oct 2016 17:44:08 +0000 (UTC)

htgoebel pushed a commit to branch master
in repository guix.

commit 31288222d4aaf49e891e24b651c9cad5198026e4
Author: Danny Milosavljevic <address@hidden>
Date:   Thu Oct 20 23:45:38 2016 +0200

    gnu: Add python-flask-basicauth.
    
    * gnu/packages/python.scm (python-flask-basicauth): New variable.
---
 gnu/packages/python.scm |   22 ++++++++++++++++++++++
 1 file changed, 22 insertions(+)

diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm
index 80335c4..57d09f9 100644
--- a/gnu/packages/python.scm
+++ b/gnu/packages/python.scm
@@ -11285,3 +11285,25 @@ useful as a validator for JSON data.")
     (description
       "This package contains a Flask module for creating REST APIs.")
     (license license:bsd-3)))
+
+(define-public python-flask-basicauth
+  (package
+    (name "python-flask-basicauth")
+    (version "0.2.0")
+    (source
+      (origin
+        (method url-fetch)
+        (uri (pypi-uri "Flask-BasicAuth" version))
+        (sha256
+          (base32
+            "1zq1spkjr4sjdnalpp8wl242kdqyk6fhbnhr8hi4r4f0km4bspnz"))))
+    (build-system python-build-system)
+    (propagated-inputs
+     `(("python-flask" ,python-flask)))
+    (home-page
+      "https://github.com/jpvanhal/flask-basicauth";)
+    (synopsis
+      "HTTP basic access authentication for Flask")
+    (description
+      "This package provides HTTP basic access authentication for Flask.")
+    (license license:bsd-3)))



reply via email to

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