tangled
alpha
login
or
join now
tjh.dev
/
nixpkgs
0
fork
atom
nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
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
···
13
12
14
13
buildPythonPackage rec {
15
14
pname = "dask-jobqueue";
16
16
-
version = "0.8.0";
15
15
+
version = "0.8.1";
17
16
format = "setuptools";
18
17
19
19
-
disabled = pythonOlder "3.7";
18
18
+
disabled = pythonOlder "3.8";
20
19
21
20
src = fetchPypi {
22
21
inherit pname version;
23
23
-
hash = "sha256-VCD6Oos9aSkbrzymQnqm2RV5uFzTj05VgPuhJ5PpyAk=";
22
22
+
hash = "sha256-Fv0bZGoHOtPedd3hKg3+UpuDbyGjvbzuKoi+8k6REqc=";
24
23
};
25
24
26
25
propagatedBuildInputs = [
···
30
29
];
31
30
32
31
checkInputs = [
32
32
+
cryptography
33
33
pytest-asyncio
34
34
pytestCheckHook
35
35
];
36
36
37
37
-
pytestFlagsArray = [
38
38
-
# Do not run entire tests suite (requires slurm, sge, etc.)
39
39
-
"dask_jobqueue/tests/test_jobqueue_core.py"
40
40
-
];
41
41
-
42
37
disabledTests = [
38
38
+
# Tests have additional requirements (e.g., sge, etc.)
39
39
+
"test_adapt_parameters"
40
40
+
"test_adapt"
41
41
+
"test_adaptive_cores_mem"
42
42
+
"test_adaptive_grouped"
43
43
+
"test_adaptive"
44
44
+
"test_basic"
45
45
+
"test_basic_scale_edge_cases"
46
46
+
"test_cluster_error_scheduler_arguments_should_use_scheduler_options"
47
47
+
"test_cluster_has_cores_and_memory"
48
48
+
"test_cluster"
49
49
+
"test_command_template"
50
50
+
"test_complex_cancel_command"
51
51
+
"test_config"
52
52
+
"test_dashboard_link"
53
53
+
"test_default_number_of_worker_processes"
54
54
+
"test_deprecation_env_extra"
55
55
+
"test_deprecation_extra"
56
56
+
"test_deprecation_job_extra"
57
57
+
"test_different_interfaces_on_scheduler_and_workers"
58
58
+
"test_docstring_cluster"
59
59
+
"test_extra_args_broken_cancel"
60
60
+
"test_forward_ip"
43
61
"test_import_scheduler_options_from_config"
62
62
+
"test_job"
63
63
+
"test_log_directory"
64
64
+
"test_scale_cores_memory"
65
65
+
"test_scale_grouped"
66
66
+
"test_scheduler_options_interface"
67
67
+
"test_scheduler_options"
44
68
"test_security"
69
69
+
"test_shebang_settings"
70
70
+
"test_use_stdin"
71
71
+
"test_worker_name_uses_cluster_name"
72
72
+
"test_wrong_parameter_error"
45
73
];
46
74
47
75
pythonImportsCheck = [