[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
02/05: WIP python-alembic
From: |
Christopher Allan Webber |
Subject: |
02/05: WIP python-alembic |
Date: |
Sun, 14 Feb 2016 02:12:05 +0000 |
cwebber pushed a commit to branch mediagoblin-deps
in repository guix.
commit c325e36d05d09acf95f0e9770ee6a258dafaafbf
Author: Christopher Allan Webber <address@hidden>
Date: Sat Feb 13 17:04:24 2016 -0800
WIP python-alembic
---
gnu/packages/python.scm | 27 +++++++++++++++++++++++++++
1 files changed, 27 insertions(+), 0 deletions(-)
diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm
index b705d41..c72c693 100644
--- a/gnu/packages/python.scm
+++ b/gnu/packages/python.scm
@@ -7562,3 +7562,30 @@ available in Django, but is a standalone package.")
(inherit (package-with-python2
(strip-python2-variant python-mako)))
(inputs `(("python2-setuptools" ,python2-setuptools)))))
+
+(define-public python-alembic
+ (package
+ (name "python-alembic")
+ (version "0.8.4")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (pypi-uri "alembic" version))
+ (sha256
+ (base32
+ "0jk23a852l3ybv7gfz81xzslyrnqnpjds5x15zd234y9rh9gq1w5"))))
+ (build-system python-build-system)
+ (inputs
+ `(("python-setuptools" ,python-setuptools)
+ ("python-sqlalchemy" ,python-sqlalchemy)
+ ("python-mako" ,python-mako)))
+ (home-page "http://bitbucket.org/zzzeek/alembic")
+ (synopsis
+ "A database migration tool for SQLAlchemy.")
+ (description
+ "Alembic is a lightweight database migration tool for usage with the
+SQLAlchemy Database Toolkit for Python.")
+ (license expat)))
+
+(define-public python2-alembic
+ (package-with-python2 python-alembic))