From 56fc64a3989ed6d82ccd62e5022475ccd89b968a Mon Sep 17 00:00:00 2001 From: Hugo Herter Date: Thu, 15 May 2025 20:19:52 +0200 Subject: [PATCH] python312Packages.llama-parse: fix missing deps The package `llama-parse` did not build without the dependency `llama-cloud-services`. Solves https://github.com/NixOS/nixpkgs/issues/405231 --- pkgs/development/python-modules/llama-parse/default.nix | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/llama-parse/default.nix b/pkgs/development/python-modules/llama-parse/default.nix index 31e4f3cb0e6c..333ccf577131 100644 --- a/pkgs/development/python-modules/llama-parse/default.nix +++ b/pkgs/development/python-modules/llama-parse/default.nix @@ -2,7 +2,7 @@ lib, buildPythonPackage, fetchPypi, - llama-index-core, + llama-cloud-services, poetry-core, pythonOlder, }: @@ -22,7 +22,9 @@ buildPythonPackage rec { build-system = [ poetry-core ]; - dependencies = [ llama-index-core ]; + dependencies = [ + llama-cloud-services + ]; pythonImportsCheck = [ "llama_parse" ];