Merge pull request #131598 from mweinelt/tts

tts: 0.1.2 -> 0.1.3

authored by

davidak and committed by
GitHub
2431a34f 32bfa39a

+4 -11
+4 -11
pkgs/tools/audio/tts/default.nix
··· 1 1 { lib 2 - , python38 2 + , python3 3 3 , fetchFromGitHub 4 4 , fetchpatch 5 5 }: ··· 10 10 # $ tts-server --model_name tts_models/en/ljspeech/glow-tts --vocoder_name vocoder_models/universal/libri-tts/fullband-melgan 11 11 # 12 12 # If you upgrade from an old version you may have to delete old models from ~/.local/share/tts 13 - # Also note that your tts version might not support all available models so check: 14 - # https://github.com/coqui-ai/TTS/releases/tag/v0.1.2 15 13 # 16 14 # For now, for deployment check the systemd unit in the pull request: 17 15 # https://github.com/NixOS/nixpkgs/pull/103851#issue-521121136 18 16 19 - let 20 - python3 = python38; 21 - in python3.pkgs.buildPythonApplication rec { 17 + python3.pkgs.buildPythonApplication rec { 22 18 pname = "tts"; 23 - version = "0.1.2"; 24 - 25 - # https://github.com/coqui-ai/TTS/issues/570 26 - disabled = python3.pythonAtLeast "3.9"; 19 + version = "0.1.3"; 27 20 28 21 src = fetchFromGitHub { 29 22 owner = "coqui-ai"; 30 23 repo = "TTS"; 31 24 rev = "v${version}"; 32 - sha256 = "1qgiaqn7iqxyf54qgnpmli69nw9s3gmi9qv874jsgycykc10hjg4"; 25 + sha256 = "0akhiaaqz53bf5zyps3vgjifmgh5wvcc9r4lrq9hmj3dds03vkjq"; 33 26 }; 34 27 35 28 postPatch = ''