python3Packages.unidic-lite: init at 1.0.8

This commit is contained in:
Martin Weinelt 2021-06-04 14:26:33 +02:00
parent 41a691d570
commit acf743087a
No known key found for this signature in database
GPG key ID: 87C1E9888F856759
2 changed files with 31 additions and 0 deletions

View file

@ -0,0 +1,29 @@
{ lib
, buildPythonPackage
, fetchPypi
}:
buildPythonPackage rec {
pname = "unidic-lite";
version = "1.0.8";
format = "setuptools";
src = fetchPypi {
inherit pname version;
sha256 = "0idj4yp0sl27ylr2wzkybbh0wj7c843lp7cljw5d1m7xv5r4b7fv";
};
# no tests
doCheck = false;
pythonImportsCheck = [
"unidic_lite"
];
meta = with lib; {
description = "A small version of UniDic";
homepage = "https://github.com/polm/unidic-lite";
license = licenses.mit;
maintainers = teams.tts.members;
};
}

View file

@ -8694,6 +8694,8 @@ in {
unidecode = callPackage ../development/python-modules/unidecode { };
unidic-lite = callPackage ../development/python-modules/unidic-lite { };
unidiff = callPackage ../development/python-modules/unidiff { };
unifi = callPackage ../development/python-modules/unifi { };