depot/third_party/nixpkgs/pkgs/development/python-modules/flask-migrate/default.nix

50 lines
966 B
Nix
Raw Normal View History

{
lib,
buildPythonPackage,
fetchFromGitHub,
pythonOlder,
alembic,
flask,
flask-script,
flask-sqlalchemy,
pytestCheckHook,
setuptools,
}:
buildPythonPackage rec {
pname = "flask-migrate";
version = "4.0.7";
format = "pyproject";
disabled = pythonOlder "3.8";
src = fetchFromGitHub {
owner = "miguelgrinberg";
repo = "Flask-Migrate";
rev = "refs/tags/v${version}";
hash = "sha256-TnihrZ+JQ1XCBlFp6k8lrNpZr4P2/Z6AmFwWZbabz+8=";
};
nativeBuildInputs = [ setuptools ];
propagatedBuildInputs = [
alembic
flask
flask-sqlalchemy
];
pythonImportsCheck = [ "flask_migrate" ];
nativeCheckInputs = [
pytestCheckHook
flask-script
];
meta = with lib; {
description = "SQLAlchemy database migrations for Flask applications using Alembic";
homepage = "https://github.com/miguelgrinberg/Flask-Migrate";
license = licenses.mit;
maintainers = with maintainers; [ gador ];
};
}