From 2f4d5012c8ce8e6c999370a32099c2eac8fff752 Mon Sep 17 00:00:00 2001 From: Luna Nova Date: Sun, 24 Aug 2025 19:53:42 -0700 Subject: [PATCH] python3Packages.llama-index-embeddings-openai: fix build by setting hatchling as build-system --- .../python-modules/llama-index-embeddings-openai/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/llama-index-embeddings-openai/default.nix b/pkgs/development/python-modules/llama-index-embeddings-openai/default.nix index 1f4da3f6b17c..23cb2b564f1b 100644 --- a/pkgs/development/python-modules/llama-index-embeddings-openai/default.nix +++ b/pkgs/development/python-modules/llama-index-embeddings-openai/default.nix @@ -3,7 +3,7 @@ buildPythonPackage, fetchPypi, llama-index-core, - poetry-core, + hatchling, pythonOlder, }: @@ -20,7 +20,7 @@ buildPythonPackage rec { hash = "sha256-rFh4OaERCJ6opiVfkhQBbXqBOzg7u7+SB3mb4RAHWOs="; }; - build-system = [ poetry-core ]; + build-system = [ hatchling ]; dependencies = [ llama-index-core ];