10 buildPythonPackage rec {
11 pname = "pytest-watch";
15 inherit pname version;
16 sha256 = "06136f03d5b361718b8d0d234042f7b2f203910d8568f63df2f866b547b3d4b9";
19 buildInputs = [ pytest ];
21 propagatedBuildInputs = [ colorama docopt watchdog ];
25 pythonImportsCheck = [ "pytest_watch" ];
28 homepage = "https://github.com/joeyespo/pytest-watch";
29 description = "Local continuous test runner with pytest and watchdog";
30 license = licenses.mit;
31 maintainers = with maintainers; [ dmvianna ];