nixpkgs/pkgs/development/python-modules/interruptingcow/default.nix

18 lines
492 B
Nix
Raw Normal View History

2017-09-17 01:36:08 +02:00
{ stdenv, buildPythonPackage, fetchPypi }:
buildPythonPackage rec {
pname = "interruptingcow";
2018-04-04 20:09:09 +02:00
version = "0.8";
2017-09-17 01:36:08 +02:00
src = fetchPypi {
inherit pname version;
2018-04-04 20:09:09 +02:00
sha256 = "3e8cd5058b651e625702cba53e3b1fb76d7a5ec07ab69c52a167a9f784e3306c";
2017-09-17 01:36:08 +02:00
};
meta = with stdenv.lib; {
description = "A watchdog that interrupts long running code";
homepage = "https://bitbucket.org/evzijst/interruptingcow";
2017-09-17 01:36:08 +02:00
license = licenses.mit;
maintainers = with maintainers; [ benley ];
};
}