blob: 82f5cf5bb95da50a7eb8fc951669a576ee6eeea1 (
about) (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
{
lib,
buildPythonPackage,
fetchPypi,
hatchling,
mpire,
tqdm,
}:
buildPythonPackage rec {
pname = "semchunk";
version = "3.2.1";
pyproject = true;
src = fetchPypi {
inherit pname version;
hash = "sha256-6kWJMEf2PfG5L1UhRKIEc+zksASsPZLP6SYB/X0ygbA=";
};
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 ];
};
}
|