lol

Merge pull request #241212 from r-ryantm/auto-update/python310Packages.jiwer

python310Packages.jiwer: 3.0.1 -> 3.0.2

authored by

Weijia Wang and committed by
GitHub
e6e1030c ee98e8b2

+10 -4
+10 -4
pkgs/development/python-modules/jiwer/default.nix
··· 5 5 , pythonRelaxDepsHook 6 6 , rapidfuzz 7 7 , click 8 + , pythonOlder 8 9 }: 9 10 10 11 buildPythonPackage rec { 11 12 pname = "jiwer"; 12 - version = "3.0.1"; 13 + version = "3.0.2"; 13 14 format = "pyproject"; 14 15 16 + disabled = pythonOlder "3.7"; 17 + 15 18 src = fetchFromGitHub { 16 19 owner = "jitsi"; 17 20 repo = pname; 18 - rev = "v${version}"; 19 - hash = "sha256-bH5TE6mcSG+WqvjW8Sd/o5bCBJmv9zurFEG2cVY/vYQ="; 21 + rev = "refs/tags/v${version}"; 22 + hash = "sha256-z+M0/mftitLV2OaaQvTdRehtt16FFeBjqR//S5ad1XE="; 20 23 }; 21 24 22 25 nativeBuildInputs = [ ··· 33 36 "rapidfuzz" 34 37 ]; 35 38 36 - pythonImportsCheck = [ "jiwer" ]; 39 + pythonImportsCheck = [ 40 + "jiwer" 41 + ]; 37 42 38 43 meta = with lib; { 39 44 description = "A simple and fast python package to evaluate an automatic speech recognition system"; 40 45 homepage = "https://github.com/jitsi/jiwer"; 46 + changelog = "https://github.com/jitsi/jiwer/releases/tag/v${version}"; 41 47 license = licenses.asl20; 42 48 maintainers = with maintainers; [ GaetanLepage ]; 43 49 };