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