Fernando Rodrigues 05580f4b44
treewide: switch instances of lib.teams.*.members to the new meta.teams attribute
Follow-up to #394797.

Signed-off-by: Fernando Rodrigues <alpha@sigmasquadron.net>
2025-04-25 22:20:17 -03:00

31 lines
504 B
Nix

{
lib,
buildPythonPackage,
lang,
version,
src,
build-system,
}:
buildPythonPackage rec {
pname = "gruut-lang-${lang}";
pyproject = true;
inherit version src build-system;
prePatch = ''
cd "${pname}"
'';
pythonImportsCheck = [ "gruut_lang_${lang}" ];
doCheck = false;
meta = with lib; {
description = "Language files for gruut tokenizer/phonemizer";
homepage = "https://github.com/rhasspy/gruut";
license = licenses.mit;
teams = [ teams.tts ];
};
}