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