pythonPackages.pytest-watch: add import check

This commit is contained in:
Sandro Jäckel 2021-02-16 23:22:10 +01:00
parent 4d8a941f75
commit f13cb9ca59
No known key found for this signature in database
GPG key ID: 3AF5A43A3EECC2E5

View file

@ -16,10 +16,11 @@ buildPythonPackage rec {
sha256 = "06136f03d5b361718b8d0d234042f7b2f203910d8568f63df2f866b547b3d4b9";
};
propagatedBuildInputs = [ pytest colorama docopt watchdog ];
# No Tests
doCheck = false;
propagatedBuildInputs = [ pytest colorama docopt watchdog ];
pythonImportsCheck = [ "pytest_watch" ];
meta = with lib; {
homepage = "https://github.com/joeyespo/pytest-watch";
@ -28,4 +29,3 @@ buildPythonPackage rec {
maintainers = with maintainers; [ dmvianna ];
};
}