Files
nixpkgs/pkgs/development/python-modules/pyttsx3/default.nix
Martin Weinelt 96b6fcd754 python3Packages.pyttsx3: 2.98 -> 2.99
This commit was automatically generated using update-python-libraries.
2025-08-09 19:03:53 +02:00

29 lines
571 B
Nix

{
lib,
buildPythonPackage,
fetchPypi,
}:
buildPythonPackage rec {
pname = "pyttsx3";
version = "2.99";
format = "wheel";
src = fetchPypi {
inherit pname version format;
sha256 = "sha256-/z5P91bCTXK58/LzBODtqv0PWK2w5vS5DZMEQM2osgc=";
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 ];
};
}