Added missing espeak-ng dependency
This commit is contained in:
parent
b4e763eb45
commit
83ec9934ab
|
@ -1,4 +1,4 @@
|
||||||
{ lib, python311Packages }:
|
{ lib, python311Packages, pkgs }:
|
||||||
with python311Packages;
|
with python311Packages;
|
||||||
let
|
let
|
||||||
# Stripped down version of the tts package (original is broken and needs cuda)
|
# Stripped down version of the tts package (original is broken and needs cuda)
|
||||||
|
@ -15,6 +15,8 @@ let
|
||||||
};
|
};
|
||||||
doCheck = false;
|
doCheck = false;
|
||||||
|
|
||||||
|
nativeBuildInputs = [ pkgs.espeak-ng ];
|
||||||
|
|
||||||
dependencies = [
|
dependencies = [
|
||||||
cython
|
cython
|
||||||
numpy
|
numpy
|
||||||
|
@ -34,6 +36,7 @@ let
|
||||||
jamo
|
jamo
|
||||||
jieba
|
jieba
|
||||||
pypinyin
|
pypinyin
|
||||||
|
pkgs.espeak
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
in
|
in
|
||||||
|
|
Loading…
Reference in a new issue