Files
nixpkgs/pkgs/development/python-modules/mecab-python3/default.nix
T

31 lines
647 B
Nix
Raw Normal View History

2018-03-25 20:37:36 +02:00
{ lib
, buildPythonPackage
, fetchPypi
2019-03-19 15:28:32 +01:00
, mecab
, swig
2018-03-25 20:37:36 +02:00
}:
buildPythonPackage rec {
pname = "mecab-python3";
2019-02-14 08:37:20 +01:00
version = "0.996.1";
2018-03-25 20:37:36 +02:00
src = fetchPypi {
inherit pname version;
2019-02-14 08:37:20 +01:00
sha256 = "5aca4d0d196161e41452b89921042c0e61a6b7e7e9373211c0c1c50d1809055d";
2018-03-25 20:37:36 +02:00
};
2019-03-19 15:28:32 +01:00
nativeBuildInputs = [
mecab # for mecab-config
swig
];
buildInputs = [ mecab ];
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 ];
};
}