12 buildPythonPackage rec {
15 format = "setuptools";
17 disabled = pythonOlder "3.7";
20 inherit pname version;
21 hash = "sha256-NHYbrhojxYGSKBpRFfsH+/IsmwEzwIFmvv/HD+0+vBI=";
24 propagatedBuildInputs = [ setuptools ];
26 # wants to write to /tmp/foo which is likely already owned by another
27 # nixbld user on hydra
28 doCheck = !stdenv.hostPlatform.isDarwin;
35 pythonImportsCheck = [ "supervisor" ];
38 description = "System for controlling process state under UNIX";
39 homepage = "http://supervisord.org/";
40 changelog = "https://github.com/Supervisor/supervisor/blob/${version}/CHANGES.rst";
41 license = licenses.free; # http://www.repoze.org/LICENSE.txt
42 maintainers = with maintainers; [ zimbatm ];