nixpkgs/pkgs/tools/audio/tts/default.nix

128 lines
3.3 KiB
Nix
Raw Normal View History

2020-06-08 10:38:55 -04:00
{ lib
2021-07-26 14:41:47 -04:00
, python3
2020-06-08 10:38:55 -04:00
, fetchFromGitHub
}:
2021-01-16 08:11:12 -05:00
# USAGE:
# $ tts-server --list_models
# # pick your favorite vocoder/tts model
# $ tts-server --model_name tts_models/en/ljspeech/glow-tts --vocoder_name vocoder_models/universal/libri-tts/fullband-melgan
2020-06-08 10:38:55 -04:00
#
2021-04-16 03:33:04 -04:00
# If you upgrade from an old version you may have to delete old models from ~/.local/share/tts
#
2020-06-08 10:38:55 -04:00
# For now, for deployment check the systemd unit in the pull request:
# https://github.com/NixOS/nixpkgs/pull/103851#issue-521121136
2021-07-26 14:41:47 -04:00
python3.pkgs.buildPythonApplication rec {
2020-06-08 10:38:55 -04:00
pname = "tts";
2021-12-31 07:47:19 -05:00
version = "0.4.2";
2021-07-02 08:00:46 -04:00
2020-06-08 10:38:55 -04:00
src = fetchFromGitHub {
owner = "coqui-ai";
2020-06-08 10:38:55 -04:00
repo = "TTS";
rev = "v${version}";
2021-12-31 07:47:19 -05:00
sha256 = "sha256-8a68iFbqqKwtZvufu1Vnv6hGHIQ3HU34wjuQsmr1NUA=";
2020-06-08 10:38:55 -04:00
};
postPatch = ''
2021-08-27 21:16:17 -04:00
sed -i requirements.txt \
-e 's!librosa==[^"]*!librosa!' \
2021-12-31 07:47:19 -05:00
-e 's!gruut\[.*\]~=2.0.0!gruut!' \
2021-08-27 21:16:17 -04:00
-e 's!mecab-python3==[^"]*!mecab-python3!' \
-e 's!numba==[^"]*!numba!' \
-e 's!numpy==[^"]*!numpy!' \
-e 's!umap-learn==[^"]*!umap-learn!'
2020-06-08 10:38:55 -04:00
'';
2021-07-02 08:00:46 -04:00
nativeBuildInputs = with python3.pkgs; [
2021-05-14 14:26:52 -04:00
cython
];
2020-06-08 10:38:55 -04:00
2021-07-02 08:00:46 -04:00
propagatedBuildInputs = with python3.pkgs; [
2021-06-04 08:46:55 -04:00
anyascii
coqpit
flask
2021-08-11 08:53:10 -04:00
fsspec
2021-07-03 15:31:31 -04:00
gruut
2020-06-08 10:38:55 -04:00
gdown
inflect
jieba
librosa
matplotlib
2021-06-04 08:46:55 -04:00
mecab-python3
numba
2021-05-14 14:26:52 -04:00
pandas
pypinyin
2020-06-08 10:38:55 -04:00
pysbd
pytorch
2021-09-06 20:41:01 -04:00
pyworld
scipy
soundfile
tensorboardx
2021-06-04 08:46:55 -04:00
tensorflow
tqdm
umap-learn
2021-06-04 08:46:55 -04:00
unidic-lite
2020-06-08 10:38:55 -04:00
];
postInstall = ''
cp -r TTS/server/templates/ $out/${python3.sitePackages}/TTS/server
2021-01-16 08:11:12 -05:00
# cython modules are not installed for some reasons
(
2021-09-13 22:56:09 -04:00
cd TTS/tts/utils/monotonic_align
2021-07-02 08:00:46 -04:00
${python3.interpreter} setup.py install --prefix=$out
2021-01-16 08:11:12 -05:00
)
2020-06-08 10:38:55 -04:00
'';
2021-07-02 08:00:46 -04:00
checkInputs = with python3.pkgs; [
pytest-sugar
2021-05-14 14:26:52 -04:00
pytestCheckHook
];
2020-06-08 10:38:55 -04:00
disabledTests = [
# RuntimeError: fft: ATen not compiled with MKL support
"test_torch_stft"
"test_stft_loss"
"test_multiscale_stft_loss"
2021-05-14 14:26:52 -04:00
# Requires network acccess to download models
"test_synthesize"
2021-12-31 07:47:19 -05:00
"test_run_all_models"
2020-06-08 10:38:55 -04:00
];
2021-01-16 08:11:12 -05:00
preCheck = ''
# use the installed TTS in $PYTHONPATH instead of the one from source to also have cython modules.
mv TTS{,.old}
2021-05-14 14:26:52 -04:00
export PATH=$out/bin:$PATH
# numba tries to write to HOME directory
export HOME=$TMPDIR
for file in $(grep -rl 'python TTS/bin' tests); do
substituteInPlace "$file" \
--replace "python TTS/bin" "${python3.interpreter} $out/lib/${python3.libPrefix}/site-packages/TTS/bin"
done
2021-01-16 08:11:12 -05:00
'';
disabledTestPaths = [
2021-01-16 08:11:12 -05:00
# requires tensorflow
"tests/vocoder_tests/test_vocoder_tf_pqmf.py"
"tests/vocoder_tests/test_vocoder_tf_melgan_generator.py"
2021-06-04 08:46:55 -04:00
"tests/tts_tests/test_tacotron2_tf_model.py"
# RuntimeError: fft: ATen not compiled with MKL support
2021-08-11 08:53:10 -04:00
"tests/tts_tests/test_vits_train.py"
"tests/vocoder_tests/test_fullband_melgan_train.py"
"tests/vocoder_tests/test_hifigan_train.py"
"tests/vocoder_tests/test_melgan_train.py"
"tests/vocoder_tests/test_multiband_melgan_train.py"
"tests/vocoder_tests/test_parallel_wavegan_train.py"
2021-01-16 08:11:12 -05:00
];
2020-06-08 10:38:55 -04:00
meta = with lib; {
homepage = "https://github.com/coqui-ai/TTS";
changelog = "https://github.com/coqui-ai/TTS/releases/tag/v${version}";
description = "Deep learning toolkit for Text-to-Speech, battle-tested in research and production";
2020-06-08 10:38:55 -04:00
license = licenses.mpl20;
maintainers = with maintainers; [ hexa mic92 ];
};
}