summary refs log tree commit diff
path: root/pkgs/tools/audio
diff options
context:
space:
mode:
authorMartin Weinelt <hexa@darmstadt.ccc.de>2023-11-17 02:44:06 +0100
committerYt <happysalada@tuta.io>2023-11-17 13:15:20 +0000
commit6bd9458830089ccedf68fa396fe1ce744ccc099b (patch)
treef186ac560e9d0a5aff8391110aae96d8f80314ae /pkgs/tools/audio
parent3d438e4cf83b732b36b0ac96f2e3ff6e6e2aef3b (diff)
downloadnixpkgs-6bd9458830089ccedf68fa396fe1ce744ccc099b.tar
nixpkgs-6bd9458830089ccedf68fa396fe1ce744ccc099b.tar.gz
nixpkgs-6bd9458830089ccedf68fa396fe1ce744ccc099b.tar.bz2
nixpkgs-6bd9458830089ccedf68fa396fe1ce744ccc099b.tar.lz
nixpkgs-6bd9458830089ccedf68fa396fe1ce744ccc099b.tar.xz
nixpkgs-6bd9458830089ccedf68fa396fe1ce744ccc099b.tar.zst
nixpkgs-6bd9458830089ccedf68fa396fe1ce744ccc099b.zip
tts: 0.19.1 -> 0.20.2
https://github.com/coqui-ai/TTS/releases/tag/v0.20.0
https://github.com/coqui-ai/TTS/releases/tag/v0.20.1
https://github.com/coqui-ai/TTS/releases/tag/v0.20.2

Newer versions require torch>=2.1.
Diffstat (limited to 'pkgs/tools/audio')
-rw-r--r--pkgs/tools/audio/tts/default.nix8
1 files changed, 5 insertions, 3 deletions
diff --git a/pkgs/tools/audio/tts/default.nix b/pkgs/tools/audio/tts/default.nix
index f6b1f6d9f66..48c936ca632 100644
--- a/pkgs/tools/audio/tts/default.nix
+++ b/pkgs/tools/audio/tts/default.nix
@@ -16,14 +16,14 @@ let
 in
 python.pkgs.buildPythonApplication rec {
   pname = "tts";
-  version = "0.19.1";
-  format = "pyproject";
+  version = "0.20.2";
+  pyproject = true;
 
   src = fetchFromGitHub {
     owner = "coqui-ai";
     repo = "TTS";
     rev = "refs/tags/v${version}";
-    hash = "sha256-GYVr/Wam1IGCSR2vHMAu5Fg/jRB333L6iNjltnRKh4E=";
+    hash = "sha256-1nlSf15IEX1qKfDtR6+jQqskjxIuzaIWatkj9Z1fh8Y=";
   };
 
   postPatch = let
@@ -57,7 +57,9 @@ python.pkgs.buildPythonApplication rec {
 
   nativeBuildInputs = with python.pkgs; [
     cython
+    numpy
     packaging
+    setuptools
   ];
 
   propagatedBuildInputs = with python.pkgs; [