diff --git a/pkgs/development/python-modules/alembic/default.nix b/pkgs/development/python-modules/alembic/default.nix index 1515bf1b6d7..da958cd8d97 100644 --- a/pkgs/development/python-modules/alembic/default.nix +++ b/pkgs/development/python-modules/alembic/default.nix @@ -15,6 +15,9 @@ buildPythonPackage rec { buildInputs = [ pytest pytestcov mock coverage ]; propagatedBuildInputs = [ Mako sqlalchemy python-editor dateutil setuptools ]; + # no traditional test suite + doCheck = false; + meta = with stdenv.lib; { homepage = https://bitbucket.org/zzzeek/alembic; description = "A database migration tool for SQLAlchemy";