python312Packages.semchunk: init at 3.0.1
Signed-off-by: Ihar Hrachyshka <ihar.hrachyshka@gmail.com>
This commit is contained in:
@@ -0,0 +1,39 @@
|
||||
{
|
||||
lib,
|
||||
buildPythonPackage,
|
||||
fetchPypi,
|
||||
hatchling,
|
||||
mpire,
|
||||
tqdm,
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "semchunk";
|
||||
version = "3.0.1";
|
||||
pyproject = true;
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
hash = "sha256-UP9nHLHGYNZm5eXHfNufDYhd9pPvrmp3HcVUFAjcAZw=";
|
||||
};
|
||||
|
||||
build-system = [
|
||||
hatchling
|
||||
];
|
||||
|
||||
dependencies = [
|
||||
mpire
|
||||
tqdm
|
||||
];
|
||||
|
||||
pythonImportsCheck = [
|
||||
"semchunk"
|
||||
];
|
||||
|
||||
meta = {
|
||||
description = "A fast, lightweight and easy-to-use Python library for splitting text into semantically meaningful chunks";
|
||||
homepage = "https://pypi.org/project/semchunk/";
|
||||
license = lib.licenses.mit;
|
||||
maintainers = with lib.maintainers; [ booxter ];
|
||||
};
|
||||
}
|
||||
@@ -14765,6 +14765,8 @@ self: super: with self; {
|
||||
|
||||
semantic-version = callPackage ../development/python-modules/semantic-version { };
|
||||
|
||||
semchunk = callPackage ../development/python-modules/semchunk { };
|
||||
|
||||
semgrep = callPackage ../development/python-modules/semgrep {
|
||||
semgrep-core = callPackage ../development/python-modules/semgrep/semgrep-core.nix { };
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user