Merge pull request #666 from offlinehacker/python_supervisor
Add supervisor, a system for controlling process state under UNIX
This commit is contained in:
commit
b1b70a02d9
@ -2401,6 +2401,24 @@ pythonPackages = python.modules // rec {
|
||||
});
|
||||
|
||||
|
||||
meld3 = buildPythonPackage rec {
|
||||
name = "meld3-0.6.10";
|
||||
|
||||
src = fetchurl {
|
||||
url = https://pypi.python.org/packages/source/m/meld3/meld3-0.6.10.tar.gz;
|
||||
md5 = "42e58624e9d427be7659d7a28e2b0b6f";
|
||||
};
|
||||
|
||||
doCheck = false;
|
||||
|
||||
meta = {
|
||||
description = "An HTML/XML templating engine used by supervisor";
|
||||
homepage = https://github.com/supervisor/meld3;
|
||||
license = "ZPL";
|
||||
};
|
||||
};
|
||||
|
||||
|
||||
memcached = buildPythonPackage rec {
|
||||
name = "memcached-1.48";
|
||||
|
||||
@ -4430,6 +4448,25 @@ pythonPackages = python.modules // rec {
|
||||
};
|
||||
};
|
||||
|
||||
|
||||
supervisor = buildPythonPackage rec {
|
||||
name = "supervisor-3.0b2";
|
||||
|
||||
src = fetchurl {
|
||||
url = https://pypi.python.org/packages/source/s/supervisor/supervisor-3.0b2.tar.gz;
|
||||
md5 = "e2557853239ee69955f993091b0eddc4";
|
||||
};
|
||||
|
||||
buildInputs = [ mock ];
|
||||
propagatedBuildInputs = [ meld3 ];
|
||||
|
||||
meta = {
|
||||
description = "A system for controlling process state under UNIX";
|
||||
homepage = http://supervisord.org/;
|
||||
};
|
||||
};
|
||||
|
||||
|
||||
sphinx = buildPythonPackage (rec {
|
||||
name = "Sphinx-1.1.3";
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user