about summary refs log tree commit diff
path: root/pkgs/development
diff options
context:
space:
mode:
authorPol Dellaiera <pol.dellaiera@protonmail.com>2024-05-06 14:42:04 +0200
committerGitHub <noreply@github.com>2024-05-06 14:42:04 +0200
commitf3b01c628cb55c871772997ea74efb00648f5e7f (patch)
tree1aab03ed6dbd3ab9f2c77f8723633d69396002c7 /pkgs/development
parentbc5c1010d3310f0d147a0f015e96f5a1a3a2871b (diff)
parent269be5f116fced9781a431522614ae04c1fbf59f (diff)
Merge pull request #309544 from GaetanLepage/jiwer
python311Packages.jiwer: 3.0.3 -> 3.04
Diffstat (limited to 'pkgs/development')
-rw-r--r--pkgs/development/python-modules/jiwer/default.nix12
1 files changed, 6 insertions, 6 deletions
diff --git a/pkgs/development/python-modules/jiwer/default.nix b/pkgs/development/python-modules/jiwer/default.nix
index 2c15663502469..66ab13cdd8fc8 100644
--- a/pkgs/development/python-modules/jiwer/default.nix
+++ b/pkgs/development/python-modules/jiwer/default.nix
@@ -10,24 +10,24 @@
 
 buildPythonPackage rec {
   pname = "jiwer";
-  version = "3.0.3";
-  format = "pyproject";
+  version = "3.04";
+  pyproject = true;
 
   disabled = pythonOlder "3.7";
 
   src = fetchFromGitHub {
     owner = "jitsi";
-    repo = pname;
+    repo = "jiwer";
     rev = "refs/tags/v${version}";
-    hash = "sha256-32bpSBYl6yxb4lJhHnfnYhtye7DaBZT0VAe9rDcleTc=";
+    hash = "sha256-2LzAOgABK00Pz3v5WWYUAcZOYcTbRKfgw7U5DOohB/Q=";
   };
 
-  nativeBuildInputs = [
+  build-system = [
     poetry-core
     pythonRelaxDepsHook
   ];
 
-  propagatedBuildInputs = [
+  dependencies = [
     rapidfuzz
     click
   ];