about summary refs log tree commit diff
path: root/pkgs/development/python-modules/gruut/default.nix
blob: c597b82ee57fc35cb5052f1652e4709dc717b2a0 (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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
  lib,
  buildPythonPackage,
  callPackage,
  fetchFromGitHub,

  # build-system
  setuptools,

  # dependencies
  babel,
  gruut-ipa,
  dateparser,
  jsonlines,
  num2words,
  python-crfsuite,
  networkx,

  # checks
  glibcLocales,
  pytestCheckHook,
}:

let
  langPkgs = [
    "ar"
    "cs"
    "de"
    "en"
    "es"
    "fa"
    "fr"
    "it"
    "lb"
    "nl"
    "pt"
    "ru"
    "sv"
    "sw"
  ];
in
buildPythonPackage rec {
  pname = "gruut";
  version = "2.3.4";
  pyproject = true;

  src = fetchFromGitHub {
    owner = "rhasspy";
    repo = "gruut";
    rev = "refs/tags/v${version}";
    hash = "sha256-DD7gnvH9T2R6E19+exWE7Si+XEpfh0Iy5FYbycjgzgM=";
  };

  pythonRelaxDeps = true;

  build-system = [ setuptools ];

  dependencies =
    [
      babel
      gruut-ipa
      jsonlines
      num2words
      python-crfsuite
      dateparser
      networkx
    ]
    ++ (map (
      lang:
      callPackage ./language-pack.nix {
        inherit
          lang
          version
          src
          build-system
          ;
      }
    ) langPkgs);

  nativeCheckInputs = [
    glibcLocales
    pytestCheckHook
  ];

  disabledTests = [
    # https://github.com/rhasspy/gruut/issues/25
    "test_lexicon_external"

    # requires mishkal library
    "test_fa"
    "test_ar"
    "test_lb"
  ];

  preCheck = ''
    export LC_ALL=en_US.utf-8
  '';

  pythonImportsCheck = [ "gruut" ];

  meta = with lib; {
    description = "Tokenizer, text cleaner, and phonemizer for many human languages";
    mainProgram = "gruut";
    homepage = "https://github.com/rhasspy/gruut";
    license = licenses.mit;
    maintainers = teams.tts.members;
  };
}