about summary refs log tree commit diff
path: root/pkgs/development/python-modules/interruptingcow/default.nix
blob: 24a9abb625fff7a02729aabcbddc0d9792fe8f49 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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 ];
  };
}