blob: d0f84f587b117c9ff16902d459efd61fb2c7c0d6 (
plain)
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
|
{
lib,
buildPythonPackage,
fetchFromGitHub,
unittestCheckHook,
setuptools,
regex,
panphon,
marisa-trie,
requests,
}:
buildPythonPackage rec {
pname = "epitran";
version = "1.24";
pyproject = true;
src = fetchFromGitHub {
owner = "dmort27";
repo = "epitran";
tag = 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 = {
description = "Tools for transcribing languages into IPA";
homepage = "https://github.com/dmort27/epitran";
changelog = "https://github.com/dmort27/epitran/releases/tag/${version}";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ vizid ];
};
}
|