blob: 1f5ef0f27ba9dc4b48b996d2dee3f81246737595 (
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
|
{
lib,
buildPythonPackage,
fetchPypi,
mecab,
swig,
setuptools-scm,
pythonOlder,
}:
buildPythonPackage rec {
pname = "mecab-python3";
version = "1.0.12";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchPypi {
pname = "mecab_python3";
inherit version;
hash = "sha256-mroeVu+A3ZcUfcv441CBR68Sn7Rs7A5DK4X5apvapLk=";
};
nativeBuildInputs = [
mecab # for mecab-config
swig
setuptools-scm
];
buildInputs = [ mecab ];
doCheck = false;
pythonImportsCheck = [ "MeCab" ];
meta = {
description = "Python wrapper for mecab: Morphological Analysis engine";
homepage = "https://github.com/SamuraiT/mecab-python3";
changelog = "https://github.com/SamuraiT/mecab-python3/releases/tag/v${version}";
license = with lib.licenses; [
gpl2
lgpl21
bsd3
]; # any of the three
};
}
|