Skip to content

Commit

Permalink
interruptingcow: 0.6 -> 0.7
Browse files Browse the repository at this point in the history
  • Loading branch information
Samuel Leathers authored and fpletz committed Sep 18, 2017
1 parent 107b181 commit d355b55
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 16 deletions.
18 changes: 18 additions & 0 deletions pkgs/development/python-modules/interruptingcow/default.nix
@@ -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 ];
};
}
17 changes: 1 addition & 16 deletions pkgs/top-level/python-packages.nix
Expand Up @@ -10550,22 +10550,7 @@ in {
};
};

interruptingcow = buildPythonPackage rec {
name = "interruptingcow-${version}";
version = "0.6";

src = pkgs.fetchurl {
url = "mirror://pypi/i/interruptingcow/${name}.tar.gz";
sha256 = "1cv4pm2h0f87n9w4r3l1f96skwmng95sawn7j00ns0rdp1zshr9d";
};

meta = {
description = "A watchdog that interrupts long running code";
homepage = https://bitbucket.org/evzijst/interruptingcow;
license = licenses.mit;
maintainers = with maintainers; [ benley ];
};
};
interruptingcow = callPackage ../development/python-modules/interruptingcow {};

iptools = buildPythonPackage rec {
version = "0.6.1";
Expand Down

0 comments on commit d355b55

Please sign in to comment.