2025-01-04 00:19:17 +01:00

47 lines
919 B
Nix

{
lib,
buildPythonPackage,
fetchFromGitHub,
poetry-core,
rapidfuzz,
click,
pythonOlder,
}:
buildPythonPackage rec {
pname = "jiwer";
version = "3.04";
pyproject = true;
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "jitsi";
repo = "jiwer";
tag = "v${version}";
hash = "sha256-2LzAOgABK00Pz3v5WWYUAcZOYcTbRKfgw7U5DOohB/Q=";
};
build-system = [
poetry-core
];
dependencies = [
rapidfuzz
click
];
pythonRelaxDeps = [ "rapidfuzz" ];
pythonImportsCheck = [ "jiwer" ];
meta = with lib; {
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}";
license = licenses.asl20;
maintainers = with maintainers; [ GaetanLepage ];
};
}