unofficial mirror of guix-devel@gnu.org 
 help / color / mirror / code / Atom feed
* [PATCH 0/4] Add some Flask modules
@ 2016-10-20 21:45 Danny Milosavljevic
  2016-10-20 21:45 ` [PATCH 1/4] gnu: Add python-aniso8601 Danny Milosavljevic
                   ` (4 more replies)
  0 siblings, 5 replies; 6+ messages in thread
From: Danny Milosavljevic @ 2016-10-20 21:45 UTC (permalink / raw)
  To: guix-devel

Danny Milosavljevic (4):
  gnu: Add python-aniso8601.
  gnu: Add python-flask-restful.
  gnu: Add python-flask-basicauth.
  gnu: Add python-flask-sqlalchemy.

 gnu/packages/python.scm | 98 +++++++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 98 insertions(+)

^ permalink raw reply	[flat|nested] 6+ messages in thread

* [PATCH 1/4] gnu: Add python-aniso8601.
  2016-10-20 21:45 [PATCH 0/4] Add some Flask modules Danny Milosavljevic
@ 2016-10-20 21:45 ` Danny Milosavljevic
  2016-10-20 21:45 ` [PATCH 2/4] gnu: Add python-flask-restful Danny Milosavljevic
                   ` (3 subsequent siblings)
  4 siblings, 0 replies; 6+ messages in thread
From: Danny Milosavljevic @ 2016-10-20 21:45 UTC (permalink / raw)
  To: guix-devel

* gnu/packages/python.scm (python-aniso8601): 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 9019fc3..d60bec0 100644
--- a/gnu/packages/python.scm
+++ b/gnu/packages/python.scm
@@ -11226,3 +11226,25 @@ useful as a validator for JSON data.")
 
 (define-public python2-validictory
     (package-with-python2 python-validictory))
+
+(define-public python-aniso8601
+  (package
+    (name "python-aniso8601")
+    (version "1.1.0")
+    (source
+      (origin
+        (method url-fetch)
+        (uri (pypi-uri "aniso8601" version))
+        (sha256
+          (base32
+            "1k5mjg9iqbjfslb5prrsfz7dhlvi6s35p1jxq8dm87w1b7dn5i2g"))))
+    (build-system python-build-system)
+    (propagated-inputs
+     `(("python-dateutil-2" ,python-dateutil-2)))
+    (home-page
+      "https://bitbucket.org/nielsenb/aniso8601")
+    (synopsis
+      "Python library for parsing ISO 8601 strings")
+    (description
+      "This package contains a library for parsing ISO 8601 datetime strings.")
+    (license license:bsd-3)))

^ permalink raw reply related	[flat|nested] 6+ messages in thread

* [PATCH 2/4] gnu: Add python-flask-restful.
  2016-10-20 21:45 [PATCH 0/4] Add some Flask modules Danny Milosavljevic
  2016-10-20 21:45 ` [PATCH 1/4] gnu: Add python-aniso8601 Danny Milosavljevic
@ 2016-10-20 21:45 ` Danny Milosavljevic
  2016-10-20 21:45 ` [PATCH 3/4] gnu: Add python-flask-basicauth Danny Milosavljevic
                   ` (2 subsequent siblings)
  4 siblings, 0 replies; 6+ messages in thread
From: Danny Milosavljevic @ 2016-10-20 21:45 UTC (permalink / raw)
  To: guix-devel

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

diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm
index d60bec0..ea56079 100644
--- a/gnu/packages/python.scm
+++ b/gnu/packages/python.scm
@@ -11248,3 +11248,34 @@ useful as a validator for JSON data.")
     (description
       "This package contains a library for parsing ISO 8601 datetime strings.")
     (license license:bsd-3)))
+
+(define-public python-flask-restful
+  (package
+    (name "python-flask-restful")
+    (version "0.3.5")
+    (source
+      (origin
+        (method url-fetch)
+        (uri (pypi-uri "Flask-RESTful" version))
+        (sha256
+          (base32
+            "0hjcmdb56b7z4bkw848lxfkyrpnkwzmqn2dgnlv12mwvjpzsxr6c"))))
+    (build-system python-build-system)
+    (propagated-inputs
+      `(("python-aniso8601" ,python-aniso8601)
+        ("python-flask" ,python-flask)
+        ("python-pycrypto" ,python-pycrypto)
+        ("python-pytz" ,python-pytz)))
+    (native-inputs
+      `(;; Optional dependency of Flask. Tests need it.
+        ("python-blinker" ,python-blinker)
+        ("python-mock" ,python-mock) ; For tests
+        ("python-nose" ,python-nose) ; For tests
+        ("python-sphinx" ,python-sphinx)))
+    (home-page
+      "https://www.github.com/flask-restful/flask-restful/")
+    (synopsis
+      "Flask module for creating REST APIs")
+    (description
+      "This package contains a Flask module for creating REST APIs.")
+    (license license:bsd-3)))

^ permalink raw reply related	[flat|nested] 6+ messages in thread

* [PATCH 3/4] gnu: Add python-flask-basicauth.
  2016-10-20 21:45 [PATCH 0/4] Add some Flask modules Danny Milosavljevic
  2016-10-20 21:45 ` [PATCH 1/4] gnu: Add python-aniso8601 Danny Milosavljevic
  2016-10-20 21:45 ` [PATCH 2/4] gnu: Add python-flask-restful Danny Milosavljevic
@ 2016-10-20 21:45 ` Danny Milosavljevic
  2016-10-20 21:45 ` [PATCH 4/4] gnu: Add python-flask-sqlalchemy Danny Milosavljevic
  2016-10-23 17:44 ` [PATCH 0/4] Add some Flask modules Hartmut Goebel
  4 siblings, 0 replies; 6+ messages in thread
From: Danny Milosavljevic @ 2016-10-20 21:45 UTC (permalink / raw)
  To: guix-devel

* 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 ea56079..60ef79c 100644
--- a/gnu/packages/python.scm
+++ b/gnu/packages/python.scm
@@ -11279,3 +11279,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)))

^ permalink raw reply related	[flat|nested] 6+ messages in thread

* [PATCH 4/4] gnu: Add python-flask-sqlalchemy.
  2016-10-20 21:45 [PATCH 0/4] Add some Flask modules Danny Milosavljevic
                   ` (2 preceding siblings ...)
  2016-10-20 21:45 ` [PATCH 3/4] gnu: Add python-flask-basicauth Danny Milosavljevic
@ 2016-10-20 21:45 ` Danny Milosavljevic
  2016-10-23 17:44 ` [PATCH 0/4] Add some Flask modules Hartmut Goebel
  4 siblings, 0 replies; 6+ messages in thread
From: Danny Milosavljevic @ 2016-10-20 21:45 UTC (permalink / raw)
  To: guix-devel

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

diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm
index 60ef79c..a21ffc8 100644
--- a/gnu/packages/python.scm
+++ b/gnu/packages/python.scm
@@ -11301,3 +11301,26 @@ useful as a validator for JSON data.")
     (description
       "This package provides HTTP basic access authentication for Flask.")
     (license license:bsd-3)))
+
+(define-public python-flask-sqlalchemy
+  (package
+    (name "python-flask-sqlalchemy")
+    (version "2.1")
+    (source
+      (origin
+        (method url-fetch)
+        (uri (pypi-uri "Flask-SQLAlchemy" version))
+        (sha256
+          (base32
+            "1i9ps5d5snih9xlqhrvmi3qfiygkmqzxh92n25kj4pf89kj4s965"))))
+    (build-system python-build-system)
+    (propagated-inputs
+     `(("python-flask" ,python-flask)
+       ("python-sqlalchemy" ,python-sqlalchemy)))
+    (home-page
+      "http://github.com/mitsuhiko/flask-sqlalchemy")
+    (synopsis
+      "Module adding SQLAlchemy support to your Flask application")
+    (description
+      "This package adds SQLAlchemy support to your Flask application.")
+    (license license:bsd-3)))

^ permalink raw reply related	[flat|nested] 6+ messages in thread

* Re: [PATCH 0/4] Add some Flask modules
  2016-10-20 21:45 [PATCH 0/4] Add some Flask modules Danny Milosavljevic
                   ` (3 preceding siblings ...)
  2016-10-20 21:45 ` [PATCH 4/4] gnu: Add python-flask-sqlalchemy Danny Milosavljevic
@ 2016-10-23 17:44 ` Hartmut Goebel
  4 siblings, 0 replies; 6+ messages in thread
From: Hartmut Goebel @ 2016-10-23 17:44 UTC (permalink / raw)
  To: guix-devel

[-- Attachment #1: Type: text/plain, Size: 719 bytes --]

Am 20.10.2016 um 23:45 schrieb Danny Milosavljevic:
> Danny Milosavljevic (4):
>   gnu: Add python-aniso8601.
>   gnu: Add python-flask-restful.
>   gnu: Add python-flask-basicauth.
>   gnu: Add python-flask-sqlalchemy.

Applied with minor corrections. Thanks.

-- 
Schönen Gruß
Hartmut Goebel
Dipl.-Informatiker (univ), CISSP, CSSLP, ISO 27001 Lead Implementer
Information Security Management, Security Governance, Secure Software
Development

Goebel Consult, Landshut
http://www.goebel-consult.de

Blog: http://www.goebel-consult.de/blog/get-current-locale-with-ansible
Kolumne:
http://www.cissp-gefluester.de/2010-11-it-sicherheit-im-unternehmen-eine-interne-oder-externe-angelegenheit




[-- Attachment #2: S/MIME Cryptographic Signature --]
[-- Type: application/pkcs7-signature, Size: 2430 bytes --]

^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2016-10-23 17:44 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-10-20 21:45 [PATCH 0/4] Add some Flask modules Danny Milosavljevic
2016-10-20 21:45 ` [PATCH 1/4] gnu: Add python-aniso8601 Danny Milosavljevic
2016-10-20 21:45 ` [PATCH 2/4] gnu: Add python-flask-restful Danny Milosavljevic
2016-10-20 21:45 ` [PATCH 3/4] gnu: Add python-flask-basicauth Danny Milosavljevic
2016-10-20 21:45 ` [PATCH 4/4] gnu: Add python-flask-sqlalchemy Danny Milosavljevic
2016-10-23 17:44 ` [PATCH 0/4] Add some Flask modules Hartmut Goebel

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/guix.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).