interruptingcow: 0.6 -> 0.7

Changed files
+19 -16
pkgs
development
python-modules
interruptingcow
top-level
+18
pkgs/development/python-modules/interruptingcow/default.nix
···
+
{ 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 ];
+
};
+
}
+1 -16
pkgs/top-level/python-packages.nix
···
-
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";