10 buildPythonPackage rec {
13 format = "setuptools";
15 src = fetchFromGitHub {
19 hash = "sha256-Q2UKELoG8OaAPxIrZNCpXgeWZ2fCzb3g3SOVzCm/gg0=";
24 substituteInPlace bin/speak-ipa \
25 --replace '${"\${src_dir}:"}' "$out/${python.sitePackages}:" \
26 --replace "do espeak" "do ${espeak}/bin/espeak"
29 propagatedBuildInputs = [
33 nativeCheckInputs = [ unittestCheckHook ];
35 pythonImportsCheck = [
40 description = "Library for manipulating pronunciations using the International Phonetic Alphabet (IPA)";
41 mainProgram = "gruut-ipa";
42 homepage = "https://github.com/rhasspy/gruut-ipa";
43 license = licenses.mit;
44 maintainers = teams.tts.members;