5ca88bfbb9
GitOrigin-RevId: 9f918d616c5321ad374ae6cb5ea89c9e04bf3e58
29 lines
684 B
Nix
29 lines
684 B
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchPypi,
|
|
pytestCheckHook,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "func-timeout";
|
|
version = "4.3.5";
|
|
format = "setuptools";
|
|
|
|
src = fetchPypi {
|
|
pname = "func_timeout";
|
|
inherit version;
|
|
sha256 = "74cd3c428ec94f4edfba81f9b2f14904846d5ffccc27c92433b8b5939b5575dd";
|
|
};
|
|
|
|
nativeCheckInputs = [ pytestCheckHook ];
|
|
|
|
pythonImportsCheck = [ "func_timeout" ];
|
|
|
|
meta = with lib; {
|
|
description = "Allows you to specify timeouts when calling any existing function. Also provides support for stoppable-threads";
|
|
homepage = "https://github.com/kata198/func_timeout";
|
|
license = licenses.lgpl3Only;
|
|
maintainers = [ ];
|
|
};
|
|
}
|