blob: 858b9142121cb42cc2b9a0394cca40ae6c8b5019 (
plain) (
blame)
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
|
{
lib,
stdenv,
buildPythonPackage,
fetchPypi,
flit-core,
psutil,
pytestCheckHook,
pythonOlder,
pyyaml,
pyzmq,
tornado,
}:
buildPythonPackage rec {
pname = "circus";
version = "0.18.0";
pyproject = true;
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
hash = "sha256-GTzoIk4GjO1mckz0gxBvtmdLUaV1g6waDn7Xp+6Mcas=";
};
build-system = [ flit-core ];
dependencies = [
psutil
pyzmq
tornado
];
nativeCheckInputs = [
pytestCheckHook
pyyaml
];
# On darwin: Too many open files
preCheck = lib.optionalString stdenv.hostPlatform.isDarwin ''
ulimit -n 1024
'';
disabledTests = [
# these tests raise circus.tests.support.TimeoutException
"test_add_start"
"test_add"
"test_command_already_running"
"test_dummy"
"test_exits_within_graceful_timeout"
"test_full_stats"
"test_handler"
"test_handler"
"test_inherited"
"test_kills_after_graceful_timeout"
"test_launch_cli"
"test_max_age"
"test_reload_sequential"
"test_reload_uppercase"
"test_reload_wid_1_worker"
"test_reload_wid_4_workers"
"test_reload1"
"test_reload2"
"test_resource_watcher_max_cpu"
"test_resource_watcher_max_mem_abs"
"test_resource_watcher_max_mem"
"test_resource_watcher_min_cpu"
"test_resource_watcher_min_mem_abs"
"test_resource_watcher_min_mem"
"test_set_before_launch"
"test_set_by_arbiter"
"test_signal"
"test_stdin_socket"
"test_stop_and_restart"
"test_stream"
"test_venv"
"test_watchdog_discovery_found"
"test_watchdog_discovery_not_found"
# this test requires socket communication
"test_plugins"
];
pythonImportsCheck = [ "circus" ];
meta = with lib; {
description = "Process and socket manager";
homepage = "https://github.com/circus-tent/circus";
changelog = "https://github.com/circus-tent/circus/releases/tag/${version}";
license = licenses.asl20;
maintainers = [ ];
};
}
|