My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/interruptingcow/default.nix

17 lines
482 B

{ lib, buildPythonPackage, fetchPypi }:
buildPythonPackage rec {
pname = "interruptingcow";
version = "0.8";
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 ];
};
}