nixpkgs-suyu/pkgs/development/python-modules/pytest-timeout/default.nix

36 lines
922 B
Nix
Raw Normal View History

2017-12-05 13:31:43 +01:00
{ buildPythonPackage
, fetchPypi
, fetchpatch
2017-12-05 13:31:43 +01:00
, lib
, pexpect
, pytest
}:
buildPythonPackage rec {
pname = "pytest-timeout";
version = "1.3.3";
2017-12-05 13:31:43 +01:00
src = fetchPypi {
inherit pname version;
sha256 = "1cczcjhw4xx5sjkhxlhc5c1bkr7x6fcyx12wrnvwfckshdvblc2a";
2017-12-05 13:31:43 +01:00
};
2019-02-14 13:42:56 +01:00
patches = fetchpatch {
url = https://bitbucket.org/pytest-dev/pytest-timeout/commits/36998c891573d8ec1db1acd4f9438cb3cf2aee2e/raw;
sha256 = "05zc2w7mjgv8rm8i1cbxp7k09vlscmay5iy78jlzgjqkrx3wkf46";
};
2017-12-05 13:31:43 +01:00
checkInputs = [ pytest pexpect ];
checkPhase = ''
# test_suppresses_timeout_when_pdb_is_entered fails under heavy load
pytest -ra -k 'not test_suppresses_timeout_when_pdb_is_entered'
'';
2017-12-05 13:31:43 +01:00
meta = with lib;{
description = "py.test plugin to abort hanging tests";
2018-06-27 22:12:57 +02:00
homepage = https://bitbucket.org/pytest-dev/pytest-timeout/;
2017-12-05 13:31:43 +01:00
license = licenses.mit;
maintainers = with maintainers; [ makefu costrouc ];
2017-12-05 13:31:43 +01:00
};
}