summary refs log tree commit diff
diff options
context:
space:
mode:
authordavidak <davidak@users.noreply.github.com>2021-09-15 18:25:17 +0200
committerGitHub <noreply@github.com>2021-09-15 18:25:17 +0200
commit254847bceaa6ebfcc123b5abbfeb1e49e9e4c5ba (patch)
treec2936f04d9b1eda5e4f4755301141c8fa7f4cc64
parentd8ed39b309bf6fc4261a46d1ca6d218e791dc0e2 (diff)
parent919a4ab53750f4108a5476ecf03f8886ef52200a (diff)
downloadnixpkgs-254847bceaa6ebfcc123b5abbfeb1e49e9e4c5ba.tar
nixpkgs-254847bceaa6ebfcc123b5abbfeb1e49e9e4c5ba.tar.gz
nixpkgs-254847bceaa6ebfcc123b5abbfeb1e49e9e4c5ba.tar.bz2
nixpkgs-254847bceaa6ebfcc123b5abbfeb1e49e9e4c5ba.tar.lz
nixpkgs-254847bceaa6ebfcc123b5abbfeb1e49e9e4c5ba.tar.xz
nixpkgs-254847bceaa6ebfcc123b5abbfeb1e49e9e4c5ba.tar.zst
nixpkgs-254847bceaa6ebfcc123b5abbfeb1e49e9e4c5ba.zip
Merge pull request #137735 from mweinelt/tts
tts: 0.2.2 -> 0.3.0
-rw-r--r--pkgs/development/python-modules/coqpit/default.nix4
-rw-r--r--pkgs/tools/audio/tts/default.nix6
2 files changed, 5 insertions, 5 deletions
diff --git a/pkgs/development/python-modules/coqpit/default.nix b/pkgs/development/python-modules/coqpit/default.nix
index a30c727eaa3..c36e353e3bf 100644
--- a/pkgs/development/python-modules/coqpit/default.nix
+++ b/pkgs/development/python-modules/coqpit/default.nix
@@ -6,14 +6,14 @@
 
 buildPythonPackage rec {
   pname = "coqpit";
-  version = "0.0.13";
+  version = "0.0.14";
   format = "setuptools";
 
   src = fetchFromGitHub {
     owner = "coqui-ai";
     repo = pname;
     rev = "v${version}";
-    sha256 = "sha256-YzCO/i0SMyXRAgiZ8Y97bHHuGFeSF8GqUjvNoHLwXZQ=";
+    sha256 = "041sx7ph8vfx8ivvm6hjj6s83p9lni2agwyrrncqwhcbjy9pbdf1";
   };
 
   checkInputs = [
diff --git a/pkgs/tools/audio/tts/default.nix b/pkgs/tools/audio/tts/default.nix
index 2f8a9ac82a6..d4a45dd8d19 100644
--- a/pkgs/tools/audio/tts/default.nix
+++ b/pkgs/tools/audio/tts/default.nix
@@ -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
     )
   '';