mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-19 12:14:10 +00:00
45 lines
832 B
Nix
45 lines
832 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchFromGitHub
|
|
, poetry-core
|
|
, pythonRelaxDepsHook
|
|
, rapidfuzz
|
|
, click
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "jiwer";
|
|
version = "3.0.1";
|
|
format = "pyproject";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "jitsi";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
hash = "sha256-bH5TE6mcSG+WqvjW8Sd/o5bCBJmv9zurFEG2cVY/vYQ=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
poetry-core
|
|
pythonRelaxDepsHook
|
|
];
|
|
|
|
propagatedBuildInputs = [
|
|
rapidfuzz
|
|
click
|
|
];
|
|
|
|
pythonRelaxDeps = [
|
|
"rapidfuzz"
|
|
];
|
|
|
|
pythonImportsCheck = [ "jiwer" ];
|
|
|
|
meta = with lib; {
|
|
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 ];
|
|
};
|
|
}
|