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
This commit is contained in:
@@ -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" ];
|
||||
|
||||
|
||||
Reference in New Issue
Block a user