blob: 2888c3e911710db0c1d5a513b2f6dea6893db95f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
|
{
lib,
stdenv,
buildPythonPackage,
fetchPypi,
mock,
pytestCheckHook,
setuptools,
}:
let
pname = "supervisor";
version = "4.3.0";
in
buildPythonPackage {
inherit pname version;
pyproject = true;
src = fetchPypi {
inherit pname version;
hash = "sha256-SivxSa30KZfhu0S3DEO2EydeyYUsPtrMqGqRZrJ+lF4=";
};
build-system = [ setuptools ];
# wants to write to /tmp/foo which is likely already owned by another
# nixbld user on hydra
doCheck = !stdenv.hostPlatform.isDarwin;
nativeCheckInputs = [
mock
pytestCheckHook
];
pythonImportsCheck = [ "supervisor" ];
meta = {
description = "System for controlling process state under UNIX";
homepage = "https://supervisord.org/";
changelog = "https://github.com/Supervisor/supervisor/blob/${version}/CHANGES.rst";
license = lib.licenses.free; # http://www.repoze.org/LICENSE.txt
maintainers = with lib.maintainers; [ zimbatm ];
};
}
|