Commit 7bcf3c5b authored by Sarah Clark's avatar Sarah Clark
Browse files

python3Packages.llama-index-indices-managed-llama-cloud: relax dependency on deprecated

Deprecated package, ironically depends on a specific version of python3Packages.deprecated.
parent ff9e8ac7
Loading
Loading
Loading
Loading
+6 −1
Original line number Diff line number Diff line
@@ -2,6 +2,7 @@
  lib,
  buildPythonPackage,
  fetchPypi,
  deprecated,
  hatchling,
  llama-cloud,
  llama-index-core,
@@ -18,11 +19,15 @@ buildPythonPackage rec {
    hash = "sha256-teAHUqswVkq/GcV1laIQf1aXw7A7CFgXtPyoSjjrvVk=";
  };

  pythonRelaxDeps = [ "llama-cloud" ];
  pythonRelaxDeps = [
    "deprecated"
    "llama-cloud"
  ];

  build-system = [ hatchling ];

  dependencies = [
    deprecated
    llama-cloud
    llama-index-core
  ];