1 { stdenv, lib, buildPythonPackage, isPy3k, fetchPypi
7 buildPythonPackage rec {
12 inherit pname version;
13 sha256 = "c479c875853e9c013d1fa73e529fd2165ff1ecaecc7e82810ba57e7362ae984d";
16 # wants to write to /tmp/foo which is likely already owned by another
17 # nixbld user on hydra
18 doCheck = !stdenv.isDarwin;
19 checkInputs = [ mock pytest ];
24 propagatedBuildInputs = [ setuptools ];
27 description = "A system for controlling process state under UNIX";
28 homepage = "http://supervisord.org/";
29 license = licenses.free; # http://www.repoze.org/LICENSE.txt
30 maintainers = with maintainers; [ zimbatm ];