mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-20 12:43:52 +00:00
python3Packages.jiwer: init at 3.0.1
This commit is contained in:
parent
d59c85209d
commit
8fd99e1212
38
pkgs/development/python-modules/jiwer/default.nix
Normal file
38
pkgs/development/python-modules/jiwer/default.nix
Normal file
@ -0,0 +1,38 @@
|
||||
{ lib
|
||||
, buildPythonPackage
|
||||
, fetchFromGitHub
|
||||
, poetry-core
|
||||
, 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
|
||||
];
|
||||
|
||||
propagatedBuildInputs = [
|
||||
rapidfuzz
|
||||
click
|
||||
];
|
||||
|
||||
pythonImportsCheck = [ "jiwer" ];
|
||||
|
||||
meta = with lib; {
|
||||
description = "JiWER is 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 ];
|
||||
};
|
||||
}
|
@ -5000,6 +5000,8 @@ self: super: with self; {
|
||||
|
||||
jira = callPackage ../development/python-modules/jira { };
|
||||
|
||||
jiwer = callPackage ../development/python-modules/jiwer { };
|
||||
|
||||
jmespath = callPackage ../development/python-modules/jmespath { };
|
||||
|
||||
jmp = callPackage ../development/python-modules/jmp { };
|
||||
|
Loading…
Reference in New Issue
Block a user