Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at python-updates 36 lines 837 B view raw
1{ 2 lib, 3 buildPythonPackage, 4 fetchPypi, 5 hatchling, 6 llama-index-core, 7 nebula3-python, 8}: 9 10buildPythonPackage rec { 11 pname = "llama-index-graph-stores-nebula"; 12 version = "0.5.1"; 13 pyproject = true; 14 15 src = fetchPypi { 16 pname = "llama_index_graph_stores_nebula"; 17 inherit version; 18 hash = "sha256-XTW6XrAbWx8DZgoEoOL2rP2WNuQqQO+hcCWpQSj98ks="; 19 }; 20 21 build-system = [ hatchling ]; 22 23 dependencies = [ 24 llama-index-core 25 nebula3-python 26 ]; 27 28 pythonImportsCheck = [ "llama_index.graph_stores.nebula" ]; 29 30 meta = { 31 description = "LlamaIndex Graph Store Integration for Nebula"; 32 homepage = "https://github.com/run-llama/llama_index/tree/main/llama-index-integrations/graph_stores/llama-index-graph-stores-nebula"; 33 license = lib.licenses.mit; 34 maintainers = with lib.maintainers; [ fab ]; 35 }; 36}