lol

Merge pull request #214717 from ilyakooo0/iko/clickable-7.11.0

clickable: 7.4.0 -> 7.11.0

authored by

Nick Cao and committed by
GitHub
44e19e7c 7983a94d

+39 -4
+39 -4
pkgs/development/tools/clickable/default.nix
··· 7 7 , jsonschema 8 8 , argcomplete 9 9 , pytestCheckHook 10 + , watchdog 11 + , stdenv 10 12 }: 11 13 12 14 buildPythonPackage rec { 13 15 pname = "clickable"; 14 - version = "7.4.0"; 16 + version = "7.11.0"; 15 17 16 18 src = fetchFromGitLab { 17 19 owner = "clickable"; 18 20 repo = "clickable"; 19 21 rev = "v${version}"; 20 - sha256 = "sha256-QS7vi0gUQbqqRYkZwD2B+zkt6DQ6AamQO7sihD8qWS0="; 22 + sha256 = "sha256-OVS+FK2ABoKbBFLDc3drcjeaa3yO9/8Ah8FzlN2fd8g="; 21 23 }; 22 24 23 25 propagatedBuildInputs = [ ··· 26 28 pyyaml 27 29 jsonschema 28 30 argcomplete 31 + watchdog 29 32 ]; 30 33 31 34 nativeCheckInputs = [ pytestCheckHook ]; 32 35 33 36 disabledTests = [ 34 - # Test require network connection 37 + # Tests require docker 35 38 "test_cpp_plugin" 36 39 "test_html" 37 40 "test_python" 38 41 "test_qml_only" 39 42 "test_rust" 40 - ]; 43 + "test_review" 44 + "test_click_build" 45 + "test_no_device" 46 + "test_no_file_temp" 47 + "test_update" 48 + "test_lib_build" 49 + "test_clean" 50 + "test_temp_exception" 51 + "test_create_interactive" 52 + "test_create_non_interactive" 53 + "test_kill" 54 + "test_writable_image" 55 + "test_no_desktop_mode" 56 + "test_no_lock" 57 + "test_run_default_command" 58 + "test_run" 59 + "test_no_container_mode_log" 60 + "test_custom_mode_log" 61 + "test_skip_desktop_mode" 62 + "test_log" 63 + "test_custom_lock_file" 64 + "test_launch_custom" 65 + "test_launch" 66 + "test_devices" 67 + "test_install" 68 + "test_skip_container_mode" 69 + ] ++ 70 + # There are no docker images available for the aarch64 architecutre 71 + # which are required for tests. 72 + lib.optionals stdenv.isAarch64 [ 73 + "test_arch" 74 + "test_restricted_arch" 75 + ]; 41 76 42 77 meta = { 43 78 description = "A build system for Ubuntu Touch apps";