at master 571 B view raw
1{ 2 lib, 3 buildPythonPackage, 4 fetchPypi, 5}: 6 7buildPythonPackage rec { 8 pname = "pyttsx3"; 9 version = "2.99"; 10 format = "wheel"; 11 12 src = fetchPypi { 13 inherit pname version format; 14 sha256 = "sha256-/z5P91bCTXK58/LzBODtqv0PWK2w5vS5DZMEQM2osgc="; 15 dist = "py3"; 16 python = "py3"; 17 }; 18 19 # This package has no tests 20 doCheck = false; 21 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 }; 28}