python313Packages.whoosh-reloaded: init at 2.7.5
This commit is contained in:
@@ -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 ];
|
||||
};
|
||||
}
|
||||
@@ -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 { };
|
||||
|
||||
Reference in New Issue
Block a user