nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix

python310Packages.dask-jobqueue: 0.8.0 -> 0.8.1

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