about summary refs log tree commit diff
path: root/pkgs/development/python-modules/epitran/default.nix
blob: 8495d81d97237bc4db0b078fd5c374ae9afd82ac (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
{
  lib,
  buildPythonPackage,
  fetchPypi,
  fetchFromGitHub,

  unittestCheckHook,

  setuptools,

  regex,
  panphon,
  marisa-trie,
  requests,
}:

buildPythonPackage rec {
  pname = "epitran";
  version = "1.24";
  pyproject = true;

  src = fetchFromGitHub {
    owner = "dmort27";
    repo = "epitran";
    rev = "refs/tags/${version}";
    hash = "sha256-AH4q8J5oMaUVJ559qe/ZlJXlCcGdxWnxMhnZKCH5Rlk=";
  };

  build-system = [ setuptools ];

  dependencies = [
    regex
    panphon
    marisa-trie
    requests
  ];

  nativeCheckInputs = [ unittestCheckHook ];

  unittestFlagsArray = [
    "-s"
    "test"
  ];

  pythonImportsCheck = [
    "epitran"
    "epitran.backoff"
    "epitran.vector"
  ];

  meta = with lib; {
    description = "Tools for transcribing languages into IPA";
    homepage = "https://github.com/dmort27/epitran";
    changelog = "https://github.com/dmort27/epitran/releases/tag/${version}";
    license = licenses.mit;
    maintainers = with maintainers; [ vizid ];
  };
}