tts: 0.2.2 -> 0.3.0

This commit is contained in:
Martin Weinelt 2021-09-14 04:56:09 +02:00
parent 451f4f9f5c
commit 919a4ab537
No known key found for this signature in database
GPG Key ID: 87C1E9888F856759

View File

@ -16,13 +16,13 @@
python3.pkgs.buildPythonApplication rec {
pname = "tts";
version = "0.2.2";
version = "0.3.0";
src = fetchFromGitHub {
owner = "coqui-ai";
repo = "TTS";
rev = "v${version}";
sha256 = "sha256-hhL6/hBs2umR8/VEumr2LzuCAOkroK8vBfDuNVY0ygw=";
sha256 = "sha256-LiH056h7eIaikBr6sm5A4T/lF7nVroxaZSYzrES7+zk=";
};
postPatch = ''
@ -69,7 +69,7 @@ python3.pkgs.buildPythonApplication rec {
cp -r TTS/server/templates/ $out/${python3.sitePackages}/TTS/server
# cython modules are not installed for some reasons
(
cd TTS/tts/layers/glow_tts/monotonic_align
cd TTS/tts/utils/monotonic_align
${python3.interpreter} setup.py install --prefix=$out
)
'';