39 lines
878 B
Nix
39 lines
878 B
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchPypi,
|
|
boto3,
|
|
llama-index-core,
|
|
poetry-core,
|
|
pythonOlder,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "llama-index-graph-stores-neptune";
|
|
version = "0.2.2";
|
|
pyproject = true;
|
|
|
|
disabled = pythonOlder "3.8";
|
|
|
|
src = fetchPypi {
|
|
pname = "llama_index_graph_stores_neptune";
|
|
inherit version;
|
|
hash = "sha256-0dT1T5DJEXBvCilwf4YZVZ2H43piI6xkpUGGpKu8GsY=";
|
|
};
|
|
|
|
build-system = [ poetry-core ];
|
|
|
|
dependencies = [
|
|
boto3
|
|
llama-index-core
|
|
];
|
|
|
|
pythonImportsCheck = [ "llama_index.graph_stores.neptune" ];
|
|
|
|
meta = with lib; {
|
|
description = "LlamaIndex Graph Store Integration for Neptune";
|
|
homepage = "https://github.com/run-llama/llama_index/tree/main/llama-index-integrations/graph_stores/llama-index-graph-stores-neptune";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ fab ];
|
|
};
|
|
}
|