mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 06:45:16 +01:00
interruptingcow: 0.6 -> 0.7
This commit is contained in:
parent
107b181523
commit
d355b55e82
2 changed files with 19 additions and 16 deletions
18
pkgs/development/python-modules/interruptingcow/default.nix
Normal file
18
pkgs/development/python-modules/interruptingcow/default.nix
Normal file
|
@ -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 ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -10550,22 +10550,7 @@ in {
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
interruptingcow = buildPythonPackage rec {
|
interruptingcow = callPackage ../development/python-modules/interruptingcow {};
|
||||||
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 ];
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
iptools = buildPythonPackage rec {
|
iptools = buildPythonPackage rec {
|
||||||
version = "0.6.1";
|
version = "0.6.1";
|
||||||
|
|
Loading…
Reference in a new issue