evcc: 0.131.4 -> 0.131.5
[NixPkgs.git] / pkgs / development / python-modules / pyttsx3 / default.nix
blobba9afeb6be85d917d7bea85945eea95475ad3ae1
2   lib,
3   buildPythonPackage,
4   fetchPypi,
5 }:
7 buildPythonPackage rec {
8   pname = "pyttsx3";
9   version = "2.98";
10   format = "wheel";
12   src = fetchPypi {
13     inherit pname version format;
14     sha256 = "sha256-s/tMpNWuT45oNtaze/X+4P1R0Vf/on+5Bkvm5749o3o=";
15     dist = "py3";
16     python = "py3";
17   };
19   # This package has no tests
20   doCheck = false;
22   meta = with lib; {
23     description = "Offline text-to-speech synthesis library";
24     homepage = "https://github.com/nateshmbhat/pyttsx3";
25     license = licenses.mpl20;
26     maintainers = [ maintainers.ethindp ];
27   };