fa5436e0a7
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
22 lines
514 B
Nix
22 lines
514 B
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchPypi,
|
|
}:
|
|
buildPythonPackage rec {
|
|
pname = "interruptingcow";
|
|
version = "0.8";
|
|
format = "setuptools";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "3e8cd5058b651e625702cba53e3b1fb76d7a5ec07ab69c52a167a9f784e3306c";
|
|
};
|
|
|
|
meta = with lib; {
|
|
description = "A watchdog that interrupts long running code";
|
|
homepage = "https://bitbucket.org/evzijst/interruptingcow";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ benley ];
|
|
};
|
|
}
|