diff options
Diffstat (limited to 'pkgs/development/python-modules/jiwer/default.nix')
-rw-r--r-- | pkgs/development/python-modules/jiwer/default.nix | 39 |
1 files changed, 17 insertions, 22 deletions
diff --git a/pkgs/development/python-modules/jiwer/default.nix b/pkgs/development/python-modules/jiwer/default.nix index 2c1566350246..0d200572a7e2 100644 --- a/pkgs/development/python-modules/jiwer/default.nix +++ b/pkgs/development/python-modules/jiwer/default.nix @@ -1,47 +1,42 @@ -{ lib -, buildPythonPackage -, fetchFromGitHub -, poetry-core -, pythonRelaxDepsHook -, rapidfuzz -, click -, pythonOlder +{ + lib, + buildPythonPackage, + fetchFromGitHub, + poetry-core, + rapidfuzz, + click, + pythonOlder, }: 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 ]; - pythonRelaxDeps = [ - "rapidfuzz" - ]; + pythonRelaxDeps = [ "rapidfuzz" ]; - pythonImportsCheck = [ - "jiwer" - ]; + pythonImportsCheck = [ "jiwer" ]; meta = with lib; { - description = "A simple and fast python package to evaluate an automatic speech recognition system"; + description = "Simple and fast python package to evaluate an automatic speech recognition system"; mainProgram = "jiwer"; homepage = "https://github.com/jitsi/jiwer"; changelog = "https://github.com/jitsi/jiwer/releases/tag/v${version}"; |