Merge pull request #281850 from Izorkin/add-lexilang

python3Packages.lexilang: init at 1.0.1
This commit is contained in:
Martin Weinelt 2024-02-17 16:05:24 +01:00 committed by GitHub
commit bf22e4cb7c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 43 additions and 0 deletions

View File

@ -0,0 +1,41 @@
{ lib
, buildPythonPackage
, fetchFromGitHub
, setuptools
, pytestCheckHook
, python
}:
buildPythonPackage rec {
pname = "lexilang";
version = "1.0.1";
pyproject = true;
src = fetchFromGitHub {
owner = "LibreTranslate";
repo = "LexiLang";
rev = "v${version}";
hash = "sha256-TLkaqCE9NDjN2XuYOUkeeWIRcqkxrdg31fS4mEnlcEo=";
};
nativeBuildInputs = [
setuptools
];
nativeCheckInputs = [
pytestCheckHook
];
checkPhase = ''
runHook preCheck
${python.interpreter} test.py
runHook postCheck
'';
meta = with lib; {
description = "Simple, fast dictionary-based language detector for short texts";
homepage = "https://github.com/LibreTranslate/LexiLang";
license = licenses.agpl3Only;
maintainers = with maintainers; [ izorkin ];
};
}

View File

@ -6347,6 +6347,8 @@ self: super: with self; {
lexid = callPackage ../development/python-modules/lexid { };
lexilang = callPackage ../development/python-modules/lexilang { };
lhapdf = toPythonModule (pkgs.lhapdf.override {
inherit python;
});