blob: ee674751a5514a26d3c399ae0abd20ab4129ed5b (
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
58
59
60
61
|
{
lib,
fetchFromGitHub,
pytestCheckHook,
buildPythonPackage,
cython,
mecab,
setuptools-scm,
ipadic,
unidic,
unidic-lite,
}:
buildPythonPackage rec {
pname = "fugashi";
version = "1.5.1";
pyproject = true;
src = fetchFromGitHub {
owner = "polm";
repo = "fugashi";
tag = "v${version}";
hash = "sha256-rkQskRz7lgVBrqBeyj9kWO2/7POrZ0TaM+Z7mhpZLvM=";
};
postPatch = ''
substituteInPlace pyproject.toml \
--replace-fail "Cython~=3.0.11" "Cython"
'';
build-system = [
cython
mecab
setuptools-scm
];
nativeCheckInputs = [
ipadic
pytestCheckHook
]
++ optional-dependencies.unidic-lite;
optional-dependencies = {
unidic-lite = [ unidic-lite ];
unidic = [ unidic ];
};
preCheck = ''
cd fugashi
'';
pythonImportsCheck = [ "fugashi" ];
meta = {
description = "Cython MeCab wrapper for fast, pythonic Japanese tokenization and morphological analysis";
homepage = "https://github.com/polm/fugashi";
changelog = "https://github.com/polm/fugashi/releases/tag/${src.tag}";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ laurent-f1z1 ];
};
}
|