[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
04/04: gnu: Add python-flask-sqlalchemy.
From: |
Hartmut Goebel |
Subject: |
04/04: gnu: Add python-flask-sqlalchemy. |
Date: |
Sun, 23 Oct 2016 17:44:08 +0000 (UTC) |
htgoebel pushed a commit to branch master
in repository guix.
commit 903276d066ab9733c253d2a15b7ae135ef2ef836
Author: Danny Milosavljevic <address@hidden>
Date: Thu Oct 20 23:45:39 2016 +0200
gnu: Add python-flask-sqlalchemy.
* 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 57d09f9..2407368 100644
--- a/gnu/packages/python.scm
+++ b/gnu/packages/python.scm
@@ -11307,3 +11307,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)))