packages/dev-python/sqlalchemy-migrate/sqlalchemy-migrate-0.6.exheres-0 (910B) - raw
1 # Copyright 2011 Dan Callaghan <djc@djc.id.au>
2 # Distributed under the terms of the GNU General Public License v2
3
4 require pypi googlecode [ suffix=tar.gz ] distutils [ has_bin=true python_dep=2.4 ]
5
6 SUMMARY="Database schema migration for SQLAlchemy"
7 DESCRIPTION="
8 Inspired by Ruby on Rails' migrations, Migrate provides a way to deal with database schema changes
9 in SQLAlchemy projects. Migrate extends SQLAlchemy to have database changeset handling. It provides
10 a database change repository mechanism which can be used from the command line as well as from
11 inside python code.
12 "
13
14 LICENCES="MIT"
15 SLOT="0"
16 PLATFORMS="~amd64 ~x86"
17
18 RESTRICT="test" # way too many unpackaged deps
19
20 DEPENDENCIES="
21 run:
22 dev-python/SQLAlchemy[>=0.5]
23 dev-python/decorator
24 dev-python/Tempita
25 test:
26 dev-python/nose
27 "
28
29 BUGS_TO="djc@djc.id.au"
30
31 src_test() {
32 edo python setup.py nosetests
33 }