about summary refs log tree commit diff
path: root/pkgs/development/tools
diff options
context:
space:
mode:
authorGabriel Nützi <gabriel.nuetzi@sdsc.ethz.ch>2024-06-23 14:37:08 +0200
committerGabriel Nützi <gabriel.nuetzi@sdsc.ethz.ch>2024-06-23 14:51:07 +0200
commit9593fc49a20bc6a0d109302a1754d0926dcb6310 (patch)
treeb59e6a24ddd8b1ca4ec071e2fce23c4b42d5dcce /pkgs/development/tools
parenta3ad209273450c7c3164eb501a9181c153eed4c3 (diff)
codespell: 2.2.6 -> 2.3.0
Diffstat (limited to 'pkgs/development/tools')
-rw-r--r--pkgs/development/tools/codespell/default.nix8
1 files changed, 3 insertions, 5 deletions
diff --git a/pkgs/development/tools/codespell/default.nix b/pkgs/development/tools/codespell/default.nix
index e76a980f7427c..84eb2cdfa205c 100644
--- a/pkgs/development/tools/codespell/default.nix
+++ b/pkgs/development/tools/codespell/default.nix
@@ -6,14 +6,14 @@
 
 python3.pkgs.buildPythonApplication rec {
   pname = "codespell";
-  version = "2.2.6";
+  version = "2.3.0";
   format = "pyproject";
 
   src = fetchFromGitHub {
     owner = "codespell-project";
     repo = "codespell";
     rev = "v${version}";
-    sha256 = "sha256-esewCJw4o4SfSst5ALZ90X3XgOuOAsaxytpotvFeHB0=";
+    sha256 = "sha256-X3Pueu0E7Q57sbKSXqCZki4/PUb1WyWk/Zmj+lhVTM8=";
   };
 
   postPatch = ''
@@ -39,9 +39,7 @@ python3.pkgs.buildPythonApplication rec {
 
   disabledTests = [
     # tries to run not fully installed script
-    "test_command"
-    # error 'dateset' should not be in aspell dictionaries (en, en_GB, en_US, en_CA, en_AU) for dictionary /build/source/codespell_lib/tests/../data/dictionary.txt
-    "test_dictionary_formatting"
+    "test_basic"
   ];
 
   pythonImportsCheck = [ "codespell_lib" ];