about summary refs log tree commit diff
path: root/pkgs/development/python-modules/pyttsx3/default.nix
blob: 6243ae776d27f2edafae96677913e028d9358d6e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
{
  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 ];
  };
}