1{
2 stdenv,
3 lib,
4 buildPythonPackage,
5 fetchPypi,
6 espeak-ng,
7}:
8
9buildPythonPackage rec {
10 pname = "pyttsx3";
11 version = "2.90";
12 format = "wheel";
13
14 src = fetchPypi {
15 inherit pname version format;
16 sha256 = "a585b6d8cffc19bd92db1e0ccbd8aa9c6528dd2baa5a47045d6fed542a44aa19";
17 dist = "py3";
18 python = "py3";
19 };
20
21 # This package has no tests
22 doCheck = false;
23
24 meta = with lib; {
25 broken = stdenv.isDarwin;
26 description = "Offline text-to-speech synthesis library";
27 homepage = "https://github.com/nateshmbhat/pyttsx3";
28 license = licenses.mpl20;
29 maintainers = [ maintainers.ethindp ];
30 };
31}