tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
python310Packages.dask-jobqueue: 0.8.0 -> 0.8.1
Fabian Affolter
3 years ago
d66de449
fb52eefb
+38
-8
1 changed file
expand all
collapse all
unified
split
pkgs
development
python-modules
dask-jobqueue
default.nix
+38
-8
pkgs/development/python-modules/dask-jobqueue/default.nix
···
1
1
{ stdenv
2
2
, lib
3
3
, buildPythonPackage
4
4
+
, cryptography
4
5
, dask
5
6
, distributed
6
7
, docrep
···
12
13
13
14
buildPythonPackage rec {
14
15
pname = "dask-jobqueue";
15
15
-
version = "0.8.0";
16
16
+
version = "0.8.1";
16
17
format = "setuptools";
17
18
18
18
-
disabled = pythonOlder "3.7";
19
19
+
disabled = pythonOlder "3.8";
19
20
20
21
src = fetchPypi {
21
22
inherit pname version;
22
22
-
hash = "sha256-VCD6Oos9aSkbrzymQnqm2RV5uFzTj05VgPuhJ5PpyAk=";
23
23
+
hash = "sha256-Fv0bZGoHOtPedd3hKg3+UpuDbyGjvbzuKoi+8k6REqc=";
23
24
};
24
25
25
26
propagatedBuildInputs = [
···
29
30
];
30
31
31
32
checkInputs = [
33
33
+
cryptography
32
34
pytest-asyncio
33
35
pytestCheckHook
34
36
];
35
37
36
36
-
pytestFlagsArray = [
37
37
-
# Do not run entire tests suite (requires slurm, sge, etc.)
38
38
-
"dask_jobqueue/tests/test_jobqueue_core.py"
39
39
-
];
40
40
-
41
38
disabledTests = [
39
39
+
# Tests have additional requirements (e.g., sge, etc.)
40
40
+
"test_adapt_parameters"
41
41
+
"test_adapt"
42
42
+
"test_adaptive_cores_mem"
43
43
+
"test_adaptive_grouped"
44
44
+
"test_adaptive"
45
45
+
"test_basic"
46
46
+
"test_basic_scale_edge_cases"
47
47
+
"test_cluster_error_scheduler_arguments_should_use_scheduler_options"
48
48
+
"test_cluster_has_cores_and_memory"
49
49
+
"test_cluster"
50
50
+
"test_command_template"
51
51
+
"test_complex_cancel_command"
52
52
+
"test_config"
53
53
+
"test_dashboard_link"
54
54
+
"test_default_number_of_worker_processes"
55
55
+
"test_deprecation_env_extra"
56
56
+
"test_deprecation_extra"
57
57
+
"test_deprecation_job_extra"
58
58
+
"test_different_interfaces_on_scheduler_and_workers"
59
59
+
"test_docstring_cluster"
60
60
+
"test_extra_args_broken_cancel"
61
61
+
"test_forward_ip"
42
62
"test_import_scheduler_options_from_config"
63
63
+
"test_job"
64
64
+
"test_log_directory"
65
65
+
"test_scale_cores_memory"
66
66
+
"test_scale_grouped"
67
67
+
"test_scheduler_options_interface"
68
68
+
"test_scheduler_options"
43
69
"test_security"
70
70
+
"test_shebang_settings"
71
71
+
"test_use_stdin"
72
72
+
"test_worker_name_uses_cluster_name"
73
73
+
"test_wrong_parameter_error"
44
74
];
45
75
46
76
pythonImportsCheck = [