diff --git a/pkgs/development/python-modules/llama-cloud-services/default.nix b/pkgs/development/python-modules/llama-cloud-services/default.nix index fcc8509ca390..95aba689c682 100644 --- a/pkgs/development/python-modules/llama-cloud-services/default.nix +++ b/pkgs/development/python-modules/llama-cloud-services/default.nix @@ -2,22 +2,20 @@ lib, buildPythonPackage, click, - deepdiff, eval-type-backport, fetchFromGitHub, + gitUpdater, llama-cloud, llama-index-core, platformdirs, hatchling, pydantic, - pytest-asyncio, - pytestCheckHook, python-dotenv, }: buildPythonPackage rec { pname = "llama-cloud-services"; - version = "0.6.79"; + version = "0.6.94"; pyproject = true; src = fetchFromGitHub { @@ -48,6 +46,14 @@ buildPythonPackage rec { pythonImportsCheck = [ "llama_cloud_services" ]; + # update script sets wrong version + passthru = { + skipBulkUpdate = true; + updateScript = gitUpdater { + rev-prefix = "llama-cloud-services-py@"; + }; + }; + meta = { description = "Knowledge Agents and Management in the Cloud"; homepage = "https://github.com/run-llama/llama_cloud_services";