interruptingcow: 0.6 -> 0.7
This commit is contained in:
committed by
Franz Pletz
parent
107b181523
commit
d355b55e82
18
pkgs/development/python-modules/interruptingcow/default.nix
Normal file
18
pkgs/development/python-modules/interruptingcow/default.nix
Normal file
@@ -0,0 +1,18 @@
|
||||
{ stdenv, buildPythonPackage, fetchPypi }:
|
||||
buildPythonPackage rec {
|
||||
pname = "interruptingcow";
|
||||
version = "0.7";
|
||||
name = "${pname}-${version}";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "0j6d0rbh8xjfw7bf8vcjld6q45i7vr9xsw5b9q6j87nhf4qhzx53";
|
||||
};
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "A watchdog that interrupts long running code";
|
||||
homepage = https://bitbucket.org/evzijst/interruptingcow;
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ benley ];
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user