about summary refs log tree commit diff
path: root/pkgs/tools/text/languagetool-rust
diff options
context:
space:
mode:
authorname_snrl <Demogorgon-74@ya.ru>2023-07-28 19:55:48 +0500
committername_snrl <Demogorgon-74@ya.ru>2023-07-28 19:55:48 +0500
commita5c3d6193ef2a8a048907078d4f91a284fee865c (patch)
tree6d076553120082de5a8a601c73a86a077ffd12d8 /pkgs/tools/text/languagetool-rust
parent67cc1e1125aa8e04795281333f56460ab01d4610 (diff)
downloadnixlib-a5c3d6193ef2a8a048907078d4f91a284fee865c.tar
nixlib-a5c3d6193ef2a8a048907078d4f91a284fee865c.tar.gz
nixlib-a5c3d6193ef2a8a048907078d4f91a284fee865c.tar.bz2
nixlib-a5c3d6193ef2a8a048907078d4f91a284fee865c.tar.lz
nixlib-a5c3d6193ef2a8a048907078d4f91a284fee865c.tar.xz
nixlib-a5c3d6193ef2a8a048907078d4f91a284fee865c.tar.zst
nixlib-a5c3d6193ef2a8a048907078d4f91a284fee865c.zip
languagetool-rust: 2.1.2 -> 2.1.3
Diffstat (limited to 'pkgs/tools/text/languagetool-rust')
-rw-r--r--pkgs/tools/text/languagetool-rust/default.nix35
1 files changed, 32 insertions, 3 deletions
diff --git a/pkgs/tools/text/languagetool-rust/default.nix b/pkgs/tools/text/languagetool-rust/default.nix
index 23e3d3805ae5..013a24686824 100644
--- a/pkgs/tools/text/languagetool-rust/default.nix
+++ b/pkgs/tools/text/languagetool-rust/default.nix
@@ -10,16 +10,16 @@
 
 rustPlatform.buildRustPackage rec {
   pname = "languagetool-rust";
-  version = "2.1.2";
+  version = "2.1.3";
 
   src = fetchFromGitHub {
     owner = "jeertmans";
     repo = pname;
     rev = "v${version}";
-    hash = "sha256-2RIfavAPxi8986f1hz7cnuIuKsPQ13PYy66FTnozIp0=";
+    hash = "sha256-iiJSdr7TF1f8/Ve+OKbTDHYWdFkd2IEOzp7Lhlpwb50=";
   };
 
-  cargoHash = "sha256-PE/q8laWos8K9b+sWg47iw/w0g4c3utkVd+KXXPJKhY=";
+  cargoHash = "sha256-oCRlWYCTmJWTi6LCDEKimsLmqm3JTaQEsKJXrvQP/p8=";
 
   buildFeatures = [ "full" ];
 
@@ -37,6 +37,35 @@ rustPlatform.buildRustPackage rec {
     "--skip=test_match_positions_3"
     "--skip=test_match_positions_4"
     "--skip=src/lib/lib.rs"
+    "--skip=test_basic_check_data"
+    "--skip=test_basic_check_file"
+    "--skip=test_basic_check_files"
+    "--skip=test_basic_check_piped"
+    "--skip=test_basic_check_text"
+    "--skip=test_check_with_dict"
+    "--skip=test_check_with_dicts"
+    "--skip=test_check_with_disabled_categories"
+    "--skip=test_check_with_disabled_category"
+    "--skip=test_check_with_disabled_rule"
+    "--skip=test_check_with_disabled_rules"
+    "--skip=test_check_with_enabled_categories"
+    "--skip=test_check_with_enabled_category"
+    "--skip=test_check_with_enabled_only_category"
+    "--skip=test_check_with_enabled_only_rule"
+    "--skip=test_check_with_enabled_only_without_enabled"
+    "--skip=test_check_with_enabled_rule"
+    "--skip=test_check_with_enabled_rules"
+    "--skip=test_check_with_language"
+    "--skip=test_check_with_picky_level"
+    "--skip=test_check_with_preferred_variant"
+    "--skip=test_check_with_preferred_variants"
+    "--skip=test_check_with_unexisting_language"
+    "--skip=test_check_with_username_and_key"
+    "--skip=test_languages"
+    "--skip=test_ping"
+    "--skip=test_words"
+    "--skip=test_words_add"
+    "--skip=test_words_delete"
   ];
 
   postInstall = ''