11 buildPythonPackage rec {
12 pname = "pytest-testmon";
16 disabled = pythonOlder "3.8";
18 src = fetchFromGitHub {
21 rev = "refs/tags/v${version}";
22 hash = "sha256-zbMX9r9lftdm9hzXMZRZZ/GEDViGk9QiYYUhO9ZcEAc=";
25 nativeBuildInputs = [ setuptools ];
27 buildInputs = [ pytest ];
29 propagatedBuildInputs = [ coverage ];
31 # The project does not include tests since version 1.3.0
34 pythonImportsCheck = [ "testmon" ];
37 description = "Pytest plug-in which automatically selects and re-executes only tests affected by recent changes";
38 homepage = "https://github.com/tarpas/pytest-testmon/";
39 changelog = "https://github.com/tarpas/pytest-testmon/releases/tag/v${version}";
40 license = licenses.mit;
41 maintainers = with maintainers; [ dmvianna ];