10 buildPythonPackage rec {
11 pname = "sqlalchemy-views";
13 format = "setuptools";
15 src = fetchFromGitHub {
19 hash = "sha256-MJgikWXo3lpMsSYbb5sOSOTbJPOx5gEghW1V9jKvHKU=";
23 substituteInPlace tox.ini --replace '--cov=sqlalchemy_views --cov-report=term' ""
26 nativeBuildInputs = [ setuptools ];
28 propagatedBuildInputs = [ sqlalchemy ];
30 nativeCheckInputs = [ pytestCheckHook ];
32 pythonImportsCheck = [ "sqlalchemy_views" ];
35 description = "Adds CreateView and DropView constructs to SQLAlchemy";
36 homepage = "https://github.com/jklukas/sqlalchemy-views";
37 license = licenses.mit;
38 maintainers = with maintainers; [ cpcloud ];