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

129 lines
3.5 KiB
Nix
Raw Normal View History

2020-06-08 14:38:55 +00:00
{ lib
2021-07-02 12:00:46 +00:00
, python38
2020-06-08 14:38:55 +00:00
, fetchFromGitHub
2021-04-16 07:33:04 +00:00
, fetchpatch
2020-06-08 14:38:55 +00:00
}:
2021-01-16 13:11:12 +00: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 14:38:55 +00:00
#
2021-04-16 07:33:04 +00:00
# If you upgrade from an old version you may have to delete old models from ~/.local/share/tts
# Also note that your tts version might not support all available models so check:
2021-07-03 19:31:31 +00:00
# https://github.com/coqui-ai/TTS/releases/tag/v0.1.2
2021-04-16 07:33:04 +00:00
#
2020-06-08 14:38:55 +00:00
# For now, for deployment check the systemd unit in the pull request:
# https://github.com/NixOS/nixpkgs/pull/103851#issue-521121136
2021-07-02 12:00:46 +00:00
let
python3 = python38;
in python3.pkgs.buildPythonApplication rec {
2020-06-08 14:38:55 +00:00
pname = "tts";
2021-07-03 19:31:31 +00:00
version = "0.1.2";
2020-06-08 14:38:55 +00:00
2021-07-02 12:00:46 +00:00
# https://github.com/coqui-ai/TTS/issues/570
disabled = python3.pythonAtLeast "3.9";
2020-06-08 14:38:55 +00:00
src = fetchFromGitHub {
owner = "coqui-ai";
2020-06-08 14:38:55 +00:00
repo = "TTS";
rev = "v${version}";
2021-07-03 19:31:31 +00:00
sha256 = "1qgiaqn7iqxyf54qgnpmli69nw9s3gmi9qv874jsgycykc10hjg4";
2020-06-08 14:38:55 +00:00
};
postPatch = ''
2021-05-14 18:26:52 +00:00
sed -i -e 's!librosa==[^"]*!librosa!' requirements.txt
sed -i -e 's!numba==[^"]*!numba!' requirements.txt
2021-05-14 18:26:52 +00:00
sed -i -e 's!numpy==[^"]*!numpy!' requirements.txt
sed -i -e 's!umap-learn==[^"]*!umap-learn!' requirements.txt
2020-06-08 14:38:55 +00:00
'';
2021-07-02 12:00:46 +00:00
nativeBuildInputs = with python3.pkgs; [
2021-05-14 18:26:52 +00:00
cython
];
2020-06-08 14:38:55 +00:00
2021-07-02 12:00:46 +00:00
propagatedBuildInputs = with python3.pkgs; [
2021-06-04 12:46:55 +00:00
anyascii
coqpit
flask
2021-07-03 19:31:31 +00:00
gruut
2020-06-08 14:38:55 +00:00
gdown
inflect
jieba
librosa
matplotlib
2021-06-04 12:46:55 +00:00
mecab-python3
numba
2021-05-14 18:26:52 +00:00
pandas
pypinyin
2020-06-08 14:38:55 +00:00
pysbd
pytorch
scipy
soundfile
tensorboardx
2021-06-04 12:46:55 +00:00
tensorflow
tqdm
umap-learn
2021-06-04 12:46:55 +00:00
unidic-lite
2020-06-08 14:38:55 +00:00
];
postInstall = ''
cp -r TTS/server/templates/ $out/${python3.sitePackages}/TTS/server
2021-01-16 13:11:12 +00:00
# cython modules are not installed for some reasons
(
cd TTS/tts/layers/glow_tts/monotonic_align
2021-07-02 12:00:46 +00:00
${python3.interpreter} setup.py install --prefix=$out
2021-01-16 13:11:12 +00:00
)
2020-06-08 14:38:55 +00:00
'';
2021-07-02 12:00:46 +00:00
checkInputs = with python3.pkgs; [
pytest-sugar
2021-05-14 18:26:52 +00:00
pytestCheckHook
];
2020-06-08 14:38:55 +00:00
disabledTests = [
# RuntimeError: fft: ATen not compiled with MKL support
"test_torch_stft"
"test_stft_loss"
"test_multiscale_stft_loss"
2021-05-14 18:26:52 +00:00
# Requires network acccess to download models
"test_synthesize"
2020-06-08 14:38:55 +00:00
];
2021-01-16 13:11:12 +00: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 18:26:52 +00: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 13:11:12 +00:00
'';
disabledTestPaths = [
2021-01-16 13:11:12 +00:00
# requires tensorflow
"tests/vocoder_tests/test_vocoder_tf_pqmf.py"
"tests/vocoder_tests/test_vocoder_tf_melgan_generator.py"
2021-06-04 12:46:55 +00:00
"tests/tts_tests/test_tacotron2_tf_model.py"
# RuntimeError: fft: ATen not compiled with MKL support
"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 13:11:12 +00:00
];
2020-06-08 14:38:55 +00: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 14:38:55 +00:00
license = licenses.mpl20;
maintainers = with maintainers; [ hexa mic92 ];
};
}