pythonPackages.mecab-python3: init at 0.7
This commit is contained in:
parent
7513208cd3
commit
3d93a9b1d2
24
pkgs/development/python-modules/mecab-python3/default.nix
Normal file
24
pkgs/development/python-modules/mecab-python3/default.nix
Normal file
@ -0,0 +1,24 @@
|
||||
{ lib
|
||||
, buildPythonPackage
|
||||
, mecab
|
||||
, fetchPypi
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "mecab-python3";
|
||||
version = "0.7";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "007dg4f5fby2yl7cc44x6xwvcrf2w2ifmn0rmk56ss33mhs8l6qy";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [ mecab ];
|
||||
|
||||
meta = with lib; {
|
||||
description = "A python wrapper for mecab: Morphological Analysis engine";
|
||||
homepage = https://github.com/LuminosoInsight/wordfreq/;
|
||||
license = licenses.bsd0;
|
||||
maintainers = with maintainers; [ ixxie ];
|
||||
};
|
||||
}
|
@ -11318,6 +11318,8 @@ in {
|
||||
propagatedBuildInputs = with self; [ six requests ];
|
||||
};
|
||||
|
||||
mecab-python3 = callPackage ../development/python-modules/mecab-python3 { };
|
||||
|
||||
mox3 = buildPythonPackage rec {
|
||||
name = "mox3-${version}";
|
||||
version = "0.23.0";
|
||||
|
Loading…
x
Reference in New Issue
Block a user