forked from mirrors/nixpkgs
python3.pkgs.pyttsx3: init at 2.90
Signed-off-by: Ethin Probst <harlydavidsen@gmail.com> Explain why doCheck is false in pyttsx3. Signed-off-by: Ethin Probst <harlydavidsen@gmail.com>
This commit is contained in:
parent
df550f6e58
commit
16ed5d0446
24
pkgs/development/python-modules/pyttsx3/default.nix
Normal file
24
pkgs/development/python-modules/pyttsx3/default.nix
Normal file
|
@ -0,0 +1,24 @@
|
||||||
|
{ lib, buildPythonPackage, fetchPypi, espeak-ng }:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
pname = "pyttsx3";
|
||||||
|
version = "2.90";
|
||||||
|
format = "wheel";
|
||||||
|
|
||||||
|
src = fetchPypi {
|
||||||
|
inherit pname version format;
|
||||||
|
sha256 = "a585b6d8cffc19bd92db1e0ccbd8aa9c6528dd2baa5a47045d6fed542a44aa19";
|
||||||
|
dist = "py3";
|
||||||
|
python = "py3";
|
||||||
|
};
|
||||||
|
|
||||||
|
# This package has no tests
|
||||||
|
doCheck = false;
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "Offline text-to-speech synthesis library";
|
||||||
|
homepage = "https://github.com/nateshmbhat/pyttsx3";
|
||||||
|
license = licenses.mpl20;
|
||||||
|
maintainers = [ maintainers.ethindp ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -8471,6 +8471,8 @@ in {
|
||||||
|
|
||||||
pytricia = callPackage ../development/python-modules/pytricia { };
|
pytricia = callPackage ../development/python-modules/pytricia { };
|
||||||
|
|
||||||
|
pyttsx3 = callPackage ../development/python-modules/pyttsx3 { };
|
||||||
|
|
||||||
pytube = callPackage ../development/python-modules/pytube { };
|
pytube = callPackage ../development/python-modules/pytube { };
|
||||||
|
|
||||||
pytun = callPackage ../development/python-modules/pytun { };
|
pytun = callPackage ../development/python-modules/pytun { };
|
||||||
|
|
Loading…
Reference in a new issue