nixpkgs/pkgs/development/python-modules/pytest-timeout/default.nix
2021-02-26 13:35:29 +01:00

40 lines
941 B
Nix

{ lib
, buildPythonPackage
, fetchPypi
, pytest
, pytestCheckHook
, pexpect
, pytestcov
}:
buildPythonPackage rec {
pname = "pytest-timeout";
version = "1.4.2";
src = fetchPypi {
inherit pname version;
sha256 = "0xnsigs0kmpq1za0d4i522sp3f71x5bgpdh3ski0rs74yqy13cr0";
};
propagatedBuildInputs = [ pytest ];
checkInputs = [ pytestCheckHook pexpect pytestcov ];
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"
];
meta = with lib; {
description = "py.test 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;
maintainers = with maintainers; [ makefu costrouc ];
};
}