blob: 9ab8054446a6aac257cb3273af250606a223da13 (
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
40
|
{
lib,
buildPythonPackage,
cached-property,
fetchFromGitHub,
loguru,
pytestCheckHook,
setuptools,
}:
buildPythonPackage rec {
pname = "whoosh-reloaded";
version = "2.7.5";
pyproject = true;
src = fetchFromGitHub {
owner = "Sygil-Dev";
repo = "whoosh-reloaded";
tag = "v${version}";
hash = "sha256-frM8tw298Yz3u3rLK4CxWUXL6ymCSwYyYhXP/EdyjtQ=";
};
build-system = [ setuptools ];
dependencies = [
cached-property
loguru
];
nativeCheckInputs = [ pytestCheckHook ];
pythonImportsCheck = [ "whoosh" ];
meta = {
description = "Fast, featureful full-text indexing and searching library implemented in pure Python";
homepage = "https://github.com/Sygil-Dev/whoosh-reloaded";
license = lib.licenses.bsd2;
maintainers = with lib.maintainers; [ SuperSandro2000 ];
};
}
|