nixpkgs/pkgs/development/python-modules/supervisor/default.nix

41 lines
1.1 KiB
Nix
Raw Normal View History

2019-09-30 18:17:58 +01:00
{ stdenv, lib, buildPythonPackage, isPy3k, fetchPypi
, mock
, meld3
2019-09-30 18:17:58 +01:00
, pytest
, setuptools
}:
buildPythonPackage rec {
pname = "supervisor";
2020-06-06 07:47:33 +01:00
version = "4.2.0";
src = fetchPypi {
inherit pname version;
2020-06-06 07:47:33 +01:00
sha256 = "64082ebedf6d36ff409ab2878f1aad5c9035f916c5f15a9a1ec7dffc6dfbbed8";
};
patches = [
# SOMAXCONN limit of glibc-2.31 has been increased from 128 to 4096:
# * https://sourceware.org/git/?p=glibc.git;a=commit;h=96958e2700f5b4f4d1183a0606b2b9848a53ea44
# * https://github.com/Supervisor/supervisor/issues/1346
./glibc-2.31.patch
];
2019-09-30 18:17:58 +01:00
# wants to write to /tmp/foo which is likely already owned by another
# nixbld user on hydra
doCheck = !stdenv.isDarwin;
checkInputs = [ mock pytest ];
checkPhase = ''
pytest
'';
propagatedBuildInputs = [ meld3 setuptools ];
meta = with lib; {
description = "A system for controlling process state under UNIX";
homepage = "http://supervisord.org/";
license = licenses.free; # http://www.repoze.org/LICENSE.txt
maintainers = with maintainers; [ zimbatm ];
};
}