2018-03-25 20:37:36 +02:00
|
|
|
{ lib
|
|
|
|
, buildPythonPackage
|
|
|
|
, fetchPypi
|
2019-03-19 15:28:32 +01:00
|
|
|
, mecab
|
|
|
|
, swig
|
2019-06-15 10:44:56 +02:00
|
|
|
, setuptools_scm
|
2018-03-25 20:37:36 +02:00
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "mecab-python3";
|
2019-12-29 10:28:07 +01:00
|
|
|
version = "0.996.3";
|
2018-03-25 20:37:36 +02:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2019-12-29 10:28:07 +01:00
|
|
|
sha256 = "1cedc968ef5bcbb2a6ece3bb4eb26e9569d89f3277dc2066ea0ce1341ab7d3b9";
|
2018-03-25 20:37:36 +02:00
|
|
|
};
|
|
|
|
|
2019-03-19 15:28:32 +01:00
|
|
|
nativeBuildInputs = [
|
|
|
|
mecab # for mecab-config
|
|
|
|
swig
|
2019-06-15 10:44:56 +02:00
|
|
|
setuptools_scm
|
2019-03-19 15:28:32 +01:00
|
|
|
];
|
|
|
|
|
|
|
|
buildInputs = [ mecab ];
|
2018-03-25 20:37:36 +02:00
|
|
|
|
2019-06-15 10:44:56 +02:00
|
|
|
doCheck = false;
|
|
|
|
|
2018-03-25 20:37:36 +02:00
|
|
|
meta = with lib; {
|
|
|
|
description = "A python wrapper for mecab: Morphological Analysis engine";
|
2019-03-19 15:30:50 +01:00
|
|
|
homepage = https://github.com/SamuraiT/mecab-python3;
|
|
|
|
license = with licenses; [ gpl2 lgpl21 bsd3 ]; # any of the three
|
2018-03-25 20:37:36 +02:00
|
|
|
maintainers = with maintainers; [ ixxie ];
|
|
|
|
};
|
|
|
|
}
|