1{ lib, buildPythonPackage, fetchPypi }:
2buildPythonPackage rec {
3 pname = "interruptingcow";
4 version = "0.8";
5
6 src = fetchPypi {
7 inherit pname version;
8 sha256 = "3e8cd5058b651e625702cba53e3b1fb76d7a5ec07ab69c52a167a9f784e3306c";
9 };
10
11 meta = with lib; {
12 description = "A watchdog that interrupts long running code";
13 homepage = "https://bitbucket.org/evzijst/interruptingcow";
14 license = licenses.mit;
15 maintainers = with maintainers; [ benley ];
16 };
17}