From 7724773f8c5d12f23b7debc519e5f3f7d51bdbae Mon Sep 17 00:00:00 2001 From: Sigmanificient Date: Thu, 19 Mar 2026 22:24:19 +0100 Subject: [PATCH] python3Packages.leb128: fix build --- pkgs/development/python-modules/leb128/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/leb128/default.nix b/pkgs/development/python-modules/leb128/default.nix index 42ef624c8e68..11b133b74e3d 100644 --- a/pkgs/development/python-modules/leb128/default.nix +++ b/pkgs/development/python-modules/leb128/default.nix @@ -1,7 +1,7 @@ { buildPythonPackage, fetchFromGitHub, - setuptools, + hatchling, pytestCheckHook, lib, }: @@ -19,7 +19,7 @@ buildPythonPackage rec { hash = "sha256-X3iBYiANzM97M91dCyjEU/Onhqcid3MMsNzzKtcRcyA="; }; - build-system = [ setuptools ]; + build-system = [ hatchling ]; nativeCheckInputs = [ pytestCheckHook ];