9 buildPythonPackage rec {
10 pname = "pytest-testmon";
12 disabled = pythonOlder "3.6";
15 inherit pname version;
16 sha256 = "sha256-+IpT0o+Jg2UJcy6d7mEdZsYfW4IXIBu4IqBFbywyPRk=";
19 propagatedBuildInputs = [ coverage ];
21 checkInputs = [ pytest ];
23 # avoid tests which try to import unittest_mixins
24 # unittest_mixins doesn't seem to be very active
27 pytest test_{core,process_code,pytest_assumptions}.py
31 homepage = "https://github.com/tarpas/pytest-testmon/";
32 description = "This is a py.test plug-in which automatically selects and re-executes only tests affected by recent changes";
33 license = licenses.mit;
34 maintainers = [ maintainers.dmvianna ];