10 buildPythonPackage rec {
11 pname = "pytest-timeout";
13 format = "setuptools";
16 inherit pname version;
17 hash = "sha256-Ejl3KRJcbsvaygEDW55SOdTblzUjIK8VWz9d4bpRZdk=";
20 buildInputs = [ pytest ];
28 "test_suppresses_timeout_when_pdb_is_entered"
29 # Remove until https://github.com/pytest-dev/pytest/pull/7207 or similar
30 "test_suppresses_timeout_when_debugger_is_entered"
33 pytestFlagsArray = [ "-ra" ];
35 pythonImportsCheck = [ "pytest_timeout" ];
38 description = "Pytest plugin to abort hanging tests";
39 homepage = "https://github.com/pytest-dev/pytest-timeout/";
40 changelog = "https://github.com/pytest-dev/pytest-timeout/#changelog";
41 license = licenses.mit;
42 maintainers = with maintainers; [ makefu ];