Merge pull request #13366 from lancelotsix/add_flakes_migrate

pythonPackages.flask_migrate: init at 1.7.0
This commit is contained in:
Frederik Rietdijk 2016-02-23 11:51:52 +01:00
commit 8b3d057c78

View file

@ -8781,6 +8781,31 @@ in modules // {
};
};
flask_migrate = buildPythonPackage rec {
name = "Flask-Migrate-${version}";
version = "1.7.0";
src = pkgs.fetchurl {
url = "https://pypi.python.org/packages/source/F/Flask-Migrate/Flask-Migrate-1.7.0.tar.gz";
sha256 = "16d7vnaj9xmxvb3qbcmhahm3ldfdhzzi6y221h62x4v1v1jayx7v";
};
# When tests run with python3*, tests should run commands as "python3 <args>",
# not "python <args>"
patchPhase = ''
substituteInPlace tests/test_migrate.py --replace "python" "${python.executable}"
substituteInPlace tests/test_multidb_migrate.py --replace "python" "${python.executable}"
'';
propagatedBuildInputs = with self ; [ flask flask_sqlalchemy flask_script alembic ];
meta = {
description = "SQLAlchemy database migrations for Flask applications using Alembic";
license = licenses.mit;
homepage = https://github.com/miguelgrinberg/Flask-Migrate;
};
};
flask_principal = buildPythonPackage rec {
name = "Flask-Principal-${version}";
version = "0.4.0";
@ -8840,6 +8865,24 @@ in modules // {
};
};
flask_sqlalchemy = buildPythonPackage rec {
name = "Flask-SQLAlchemy-${version}";
version = "2.1";
src = pkgs.fetchurl {
url = "https://pypi.python.org/packages/source/F/Flask-SQLAlchemy/${name}.tar.gz";
sha256 = "1i9ps5d5snih9xlqhrvmi3qfiygkmqzxh92n25kj4pf89kj4s965";
};
propagatedBuildInputs = with self ; [ flask sqlalchemy_1_0 ];
meta = {
description = "SQLAlchemy extension for Flask";
homepage = http://flask-sqlalchemy.pocoo.org/;
license = licenses.bsd3;
};
};
wtforms = buildPythonPackage rec {
version = "2.0.2";
name = "wtforms-${version}";