mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-13 21:32:23 +03:00
pythonPackages: add alembic, database migration tool for SQLAlchemy
This commit is contained in:
parent
81d8c3c6f9
commit
9b55a4ebe1
@ -214,6 +214,25 @@ pythonPackages = modules // import ./python-packages-generated.nix {
|
|||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
|
alembic = buildPythonPackage rec {
|
||||||
|
name = "alembic-0.6.0";
|
||||||
|
|
||||||
|
src = fetchurl {
|
||||||
|
url = "https://pypi.python.org/packages/source/a/alembic/${name}.tar.gz";
|
||||||
|
md5 = "084fe81b48ebae43b0f6031af68a03d6";
|
||||||
|
};
|
||||||
|
|
||||||
|
buildInputs = [ nose ];
|
||||||
|
propagatedBuildInputs = [ Mako sqlalchemy ];
|
||||||
|
|
||||||
|
meta = {
|
||||||
|
homepage = http://bitbucket.org/zzzeek/alembic;
|
||||||
|
description = "A database migration tool for SQLAlchemy.";
|
||||||
|
license = stdenv.lib.licenses.mit;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
almir = buildPythonPackage rec {
|
almir = buildPythonPackage rec {
|
||||||
name = "almir-0.1.8";
|
name = "almir-0.1.8";
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user