mdsf: remove cargoCheck to fix build failure; 0.10.5 -> 0.10.6 (#441230)

authored by Gaétan Lepage and committed by GitHub eb998df5 0e03b566

+5 -41
+5 -41
pkgs/by-name/md/mdsf/package.nix
··· 7 }: 8 let 9 pname = "mdsf"; 10 - version = "0.10.5"; 11 in 12 rustPlatform.buildRustPackage { 13 inherit pname version; ··· 16 owner = "hougesen"; 17 repo = "mdsf"; 18 tag = "v${version}"; 19 - hash = "sha256-m7VoGozJShEw6qVXScxgX7CCyIh62unVvzjq/W7Ynu8="; 20 }; 21 22 - cargoHash = "sha256-AMo2LPC6RviYu2qx202o0gFIIJdjNJxS/zY06TEcpKw="; 23 24 - checkFlags = [ 25 - # Failing due to the method under test trying to create a directory & write to the filesystem 26 - "--skip=caching::test_cache_entry::it_should_work" 27 - # Permissions denied due to the test trying to remove a directory 28 - "--skip=commands::prune_cache::test_run::it_should_remove_cache_directory" 29 - # Permissions denied due to the test trying to write to a file 30 - "--skip=config::test_config::it_should_error_on_broken_config" 31 - # The following tests try to create tmp files 32 - "--skip=format::accepts_multiple_file_paths" 33 - "--skip=format::accepts_multiple_file_paths_with_thread_argument" 34 - "--skip=format::accepts_multiple_file_paths_with_thread_argument_zero" 35 - "--skip=format::format_with_cache_arg" 36 - "--skip=format::formats_broken_input" 37 - "--skip=format::formats_broken_input_stdin" 38 - "--skip=format::formats_broken_input_with_debug_arg" 39 - "--skip=format::on_missing_tool_binary_fail_cli" 40 - "--skip=format::on_missing_tool_binary_fail_config" 41 - "--skip=format::on_missing_tool_binary_fail_fast_cli" 42 - "--skip=format::on_missing_tool_binary_fail_fast_config" 43 - "--skip=format::on_missing_tool_binary_ignore_cli" 44 - "--skip=format::on_missing_tool_binary_ignore_config" 45 - "--skip=format::on_missing_tool_binary_prioritize_cli" 46 - "--skip=format::supports_config_path_argument" 47 - # Depends on one of gofumpt, gofmt, or crlfmt being available 48 - "--skip=test_lib::it_should_add_go_package_if_missing" 49 - # The following tests depend on rustfmt being available 50 - "--skip=test_lib::it_should_format_the_code" 51 - "--skip=test_lib::it_should_format_the_codeblocks_that_start_with_whitespace" 52 - "--skip=test_lib::it_should_not_care_if_go_package_is_set" 53 - "--skip=test_lib::it_should_not_modify_outside_blocks" 54 - # The following tests try to interact with the file system 55 - "--skip=verify::accepts_multiple_file_paths_broken" 56 - "--skip=verify::accepts_multiple_file_paths_mixed" 57 - "--skip=verify::fails_with_broken_input" 58 - # The following tests try to interact with stdin 59 - "--skip=verify::success_with_formatted_input_stdin" 60 - "--skip=verify::supports_log_level_argument" 61 - ]; 62 63 nativeInstallCheckInputs = [ versionCheckHook ]; 64 doInstallCheck = true;
··· 7 }: 8 let 9 pname = "mdsf"; 10 + version = "0.10.6"; 11 in 12 rustPlatform.buildRustPackage { 13 inherit pname version; ··· 16 owner = "hougesen"; 17 repo = "mdsf"; 18 tag = "v${version}"; 19 + hash = "sha256-fWJSCYWbt1P9Y2mZQ3n36SOnW7s3Cu7nmDS9dOv9hII="; 20 }; 21 22 + cargoHash = "sha256-qwROKSUiTvBix3mxnwtoS9pTlemi9U7oCa/nlERq9sw="; 23 24 + # many tests fail for various reasons of which most depend on the build sandbox 25 + doCheck = false; 26 27 nativeInstallCheckInputs = [ versionCheckHook ]; 28 doInstallCheck = true;