Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / ttstokenizer / default.nix
blob554e0341fb164fa9d191559d7447162204136ba8
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , anyascii
5 , inflect
6 , nltk
7 , numpy
8 }:
10 buildPythonPackage rec {
11   pname = "ttstokenizer";
12   version = "1.0.0";
13   format = "setuptools";
15   src = fetchPypi {
16     inherit pname version;
17     hash = "sha256-HtDXDKlZ3jpwIgb5DvaqurEkRe8TRJ2xqKl2IKElnKU=";
18   };
20   propagatedBuildInputs = [
21     anyascii
22     inflect
23     nltk
24     numpy
25   ];
27   pythonImportsCheck = [ "ttstokenizer" ];
29   # no tests
30   doCheck = false;
32   meta = with lib; {
33     description = "Tokenizer for Text to Speech (TTS) models";
34     homepage = "https://pypi.org/project/ttstokenizer";
35     license = with licenses; [ asl20 ];
36     maintainers = with maintainers; [ happysalada ];
37   };