1{ lib
2, buildPythonPackage
3, mecab
4, fetchPypi
5}:
6
7buildPythonPackage rec {
8 pname = "mecab-python3";
9 version = "0.7";
10
11 src = fetchPypi {
12 inherit pname version;
13 sha256 = "007dg4f5fby2yl7cc44x6xwvcrf2w2ifmn0rmk56ss33mhs8l6qy";
14 };
15
16 propagatedBuildInputs = [ mecab ];
17
18 meta = with lib; {
19 description = "A python wrapper for mecab: Morphological Analysis engine";
20 homepage = https://github.com/LuminosoInsight/wordfreq/;
21 license = licenses.bsd0;
22 maintainers = with maintainers; [ ixxie ];
23 };
24}