Merge pull request #224953 from wegank/jiwer-desc

python310Packages.jiwer: fix build
This commit is contained in:
Weijia Wang 2023-04-06 10:50:29 +03:00 committed by GitHub
commit c471cc0ece
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -2,6 +2,7 @@
, buildPythonPackage
, fetchFromGitHub
, poetry-core
, pythonRelaxDepsHook
, rapidfuzz
, click
}:
@ -20,6 +21,7 @@ buildPythonPackage rec {
nativeBuildInputs = [
poetry-core
pythonRelaxDepsHook
];
propagatedBuildInputs = [
@ -27,10 +29,14 @@ buildPythonPackage rec {
click
];
pythonRelaxDeps = [
"rapidfuzz"
];
pythonImportsCheck = [ "jiwer" ];
meta = with lib; {
description = "JiWER is a simple and fast python package to evaluate an automatic speech recognition system";
description = "A simple and fast python package to evaluate an automatic speech recognition system";
homepage = "https://github.com/jitsi/jiwer";
license = licenses.asl20;
maintainers = with maintainers; [ GaetanLepage ];