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

18 lines
482 B
Nix
Raw Normal View History

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