Commit e91d0b09 authored by Fabian Affolter's avatar Fabian Affolter
Browse files

python313Packages.llama-index-graph-stores-neo4j: relax neo4j

parent 3f8fc872
Loading
Loading
Loading
Loading
+7 −5
Original line number Diff line number Diff line
@@ -2,10 +2,9 @@
  lib,
  buildPythonPackage,
  fetchPypi,
  neo4j,
  llama-index-core,
  hatchling,
  pythonOlder,
  llama-index-core,
  neo4j,
}:

buildPythonPackage rec {
@@ -13,14 +12,14 @@ buildPythonPackage rec {
  version = "0.5.1";
  pyproject = true;

  disabled = pythonOlder "3.8";

  src = fetchPypi {
    pname = "llama_index_graph_stores_neo4j";
    inherit version;
    hash = "sha256-P3EzR6piD49dFQY26LuV4/gZpOsFe5Hfp87BFiwo1Xg=";
  };

  pythonRelaxDeps = [ "neo4j" ];

  build-system = [ hatchling ];

  dependencies = [
@@ -28,6 +27,9 @@ buildPythonPackage rec {
    llama-index-core
  ];

  # Tests are not shipped with PyPI package
  doCheck = false;

  pythonImportsCheck = [ "llama_index.graph_stores.neo4j" ];

  meta = with lib; {