python312Packages.llama-index-graph-stores-neo4j: init at 0.1.3

This commit is contained in:
Fabian Affolter 2024-03-28 16:39:32 +01:00
parent 7f1aead8b3
commit 445c570f5e
2 changed files with 44 additions and 0 deletions

View File

@ -0,0 +1,42 @@
{ lib
, buildPythonPackage
, fetchPypi
, neo4j
, llama-index-core
, poetry-core
, pythonOlder
}:
buildPythonPackage rec {
pname = "llama-index-graph-stores-neo4j";
version = "0.1.3";
pyproject = true;
disabled = pythonOlder "3.8";
src = fetchPypi {
pname = "llama_index_graph_stores_neo4j";
inherit version;
hash = "sha256-AUWezvdONxz5H42VpTjh7NrBkTdWjtBJyMvA8kSh5w4=";
};
build-system = [
poetry-core
];
dependencies = [
neo4j
llama-index-core
];
pythonImportsCheck = [
"llama_index.graph_stores.neo4j"
];
meta = with lib; {
description = "LlamaIndex Graph Store Integration for Neo4j";
homepage = "https://github.com/run-llama/llama_index/tree/main/llama-index-integrations/graph_stores/llama-index-graph-stores-neo4j";
license = licenses.mit;
maintainers = with maintainers; [ fab ];
};
}

View File

@ -6778,6 +6778,8 @@ self: super: with self; {
llama-index-embeddings-openai = callPackage ../development/python-modules/llama-index-embeddings-openai { };
llama-index-graph-stores-neo4j = callPackage ../development/python-modules/llama-index-graph-stores-neo4j { };
llama-index-indices-managed-llama-cloud = callPackage ../development/python-modules/llama-index-indices-managed-llama-cloud { };
llama-index-legacy = callPackage ../development/python-modules/llama-index-legacy { };