1{
2 lib,
3 boto3,
4 buildPythonPackage,
5 fetchPypi,
6 hatchling,
7 llama-index-core,
8 pythonOlder,
9}:
10
11buildPythonPackage rec {
12 pname = "llama-index-graph-stores-neptune";
13 version = "0.4.1";
14 pyproject = true;
15
16 disabled = pythonOlder "3.8";
17
18 src = fetchPypi {
19 pname = "llama_index_graph_stores_neptune";
20 inherit version;
21 hash = "sha256-plwDD8NBcYqedEoCeYqEZn1kDQZjDpg94jRZJBPjdU8=";
22 };
23
24 build-system = [ hatchling ];
25
26 dependencies = [
27 boto3
28 llama-index-core
29 ];
30
31 pythonImportsCheck = [ "llama_index.graph_stores.neptune" ];
32
33 meta = with lib; {
34 description = "LlamaIndex Graph Store Integration for Neptune";
35 homepage = "https://github.com/run-llama/llama_index/tree/main/llama-index-integrations/graph_stores/llama-index-graph-stores-neptune";
36 license = licenses.mit;
37 maintainers = with maintainers; [ fab ];
38 };
39}