Unverified Commit 5b7aa053 authored by Weijia Wang's avatar Weijia Wang Committed by GitHub
Browse files

Merge pull request #224464 from GaetanLepage/jiwer

python3Packages.jiwer: init at 3.0.1
parents e3350689 8fd99e12
Loading
Loading
Loading
Loading
+38 −0
Original line number Diff line number Diff line
{ 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 ];
  };
}
+2 −0
Original line number Diff line number Diff line
@@ -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 { };