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