linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / development / python-modules / supervisor / default.nix
blob93569fe3da73c4613c67718f5dd1e41e6ceab9c4
1 { stdenv, lib, buildPythonPackage, isPy3k, fetchPypi
2 , mock
3 , pytest
4 , setuptools
5 }:
7 buildPythonPackage rec {
8   pname = "supervisor";
9   version = "4.2.1";
11   src = fetchPypi {
12     inherit pname version;
13     sha256 = "c479c875853e9c013d1fa73e529fd2165ff1ecaecc7e82810ba57e7362ae984d";
14   };
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 ];
20   checkPhase = ''
21     pytest
22   '';
24   propagatedBuildInputs = [ setuptools ];
26   meta = with lib; {
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 ];
31   };