python313Packages.whoosh-reloaded: init at 2.7.5

This commit is contained in:
Sandro Jäckel
2025-04-11 03:46:19 +02:00
parent 3931447385
commit 4214cdd7ab
2 changed files with 42 additions and 0 deletions
@@ -0,0 +1,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 ];
};
}
+2
View File
@@ -18821,6 +18821,8 @@ self: super: with self; {
whoosh = callPackage ../development/python-modules/whoosh { };
whoosh-reloaded = callPackage ../development/python-modules/whoosh-reloaded { };
widgetsnbextension = callPackage ../development/python-modules/widgetsnbextension { };
widlparser = callPackage ../development/python-modules/widlparser { };