biome: 1.9.2 -> 1.9.3 (#349335)
[NixPkgs.git] / pkgs / development / python-modules / llama-index-graph-stores-neo4j / default.nix
blob62fe9f4660028d9dc023d6137c779a09da6c8b49
2   lib,
3   buildPythonPackage,
4   fetchPypi,
5   neo4j,
6   llama-index-core,
7   poetry-core,
8   pythonOlder,
9 }:
11 buildPythonPackage rec {
12   pname = "llama-index-graph-stores-neo4j";
13   version = "0.3.2";
14   pyproject = true;
16   disabled = pythonOlder "3.8";
18   src = fetchPypi {
19     pname = "llama_index_graph_stores_neo4j";
20     inherit version;
21     hash = "sha256-O/iTlpbREmN1tbojbaqZ7gLAN2JdKmKEzhKCnpth6S0=";
22   };
24   build-system = [ poetry-core ];
26   dependencies = [
27     neo4j
28     llama-index-core
29   ];
31   pythonImportsCheck = [ "llama_index.graph_stores.neo4j" ];
33   meta = with lib; {
34     description = "LlamaIndex Graph Store Integration for Neo4j";
35     homepage = "https://github.com/run-llama/llama_index/tree/main/llama-index-integrations/graph_stores/llama-index-graph-stores-neo4j";
36     license = licenses.mit;
37     maintainers = with maintainers; [ fab ];
38   };