python2Packages.supervisor: 3.1.4 -> 3.3.4

This commit is contained in:
zimbatm 2018-05-25 21:35:25 +01:00
parent 97e376bf9c
commit 1cd792cf79
2 changed files with 27 additions and 21 deletions

View File

@ -0,0 +1,26 @@
{ lib, buildPythonPackage, isPy3k, fetchPypi
, mock
, meld3
}:
buildPythonPackage rec {
pname = "supervisor";
version = "3.3.4";
src = fetchPypi {
inherit pname version;
sha256 = "0wp62z9xprvz2krg02xnbwcnq6pxfq3byd8cxx8c2d8xznih28i1";
};
buildInputs = [ mock ];
propagatedBuildInputs = [ meld3 ];
# Supervisor requires Python 2.4 or later but does not work on any version of Python 3. You are using version 3.6.5 (default, Mar 28 2018, 10:24:30)
disabled = isPy3k;
meta = {
description = "A system for controlling process state under UNIX";
homepage = http://supervisord.org/;
maintainers = with lib.maintainers; [ zimbatm ];
};
}

View File

@ -13418,27 +13418,7 @@ in {
};
};
supervisor = buildPythonPackage rec {
name = "supervisor-3.1.4";
disabled = isPy3k;
src = pkgs.fetchurl {
url = "mirror://pypi/s/supervisor/${name}.tar.gz";
sha256 = "0kk0sv7780m4dzmrcb2m284krz907jh8jp7khz5a79qryy4m1xw2";
};
buildInputs = with self; [ mock ];
propagatedBuildInputs = with self; [ meld3 ];
# failing tests when building under chroot as root user doesn't exist
doCheck = false;
meta = {
description = "A system for controlling process state under UNIX";
homepage = http://supervisord.org/;
};
};
supervisor = callPackage ../development/python-modules/supervisor {};
subprocess32 = callPackage ../development/python-modules/subprocess32 { };