depot/third_party/nixpkgs/pkgs/development/python-modules/pyttsx3/default.nix
Default email fa5436e0a7 Project import generated by Copybara.
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
2024-06-05 17:53:02 +02:00

31 lines
637 B
Nix

{
stdenv,
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; {
broken = stdenv.isDarwin;
description = "Offline text-to-speech synthesis library";
homepage = "https://github.com/nateshmbhat/pyttsx3";
license = licenses.mpl20;
maintainers = [ maintainers.ethindp ];
};
}