python3Packages.pytest-timeout: 1.4.2 -> 2.0.1

This commit is contained in:
Fabian Affolter
2021-12-14 12:04:45 -08:00
committed by Jonathan Ringer
parent 31964c3bb5
commit f2aa618657
@@ -9,28 +9,40 @@
buildPythonPackage rec {
pname = "pytest-timeout";
version = "1.4.2";
version = "2.0.1";
format = "setuptools";
src = fetchPypi {
inherit pname version;
sha256 = "0xnsigs0kmpq1za0d4i522sp3f71x5bgpdh3ski0rs74yqy13cr0";
sha256 = "sha256-pexOzt246nJpEYSFk9ZoWUEH55diHpf5Oh0dvG+7kIA=";
};
buildInputs = [ pytest ];
buildInputs = [
pytest
];
checkInputs = [ pytestCheckHook pexpect pytest-cov ];
checkInputs = [
pytestCheckHook
pexpect
pytest-cov
];
disabledTests = [
"test_suppresses_timeout_when_pdb_is_entered"
# Remove until https://github.com/pytest-dev/pytest/pull/7207 or similar
"test_suppresses_timeout_when_debugger_is_entered"
];
pytestFlagsArray = [
"-ra"
];
pythonImportsCheck = [
"pytest_timeout"
];
meta = with lib; {
description = "py.test plugin to abort hanging tests";
description = "Pytest plugin to abort hanging tests";
homepage = "https://github.com/pytest-dev/pytest-timeout/";
changelog = "https://github.com/pytest-dev/pytest-timeout/#changelog";
license = licenses.mit;