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