From b44ac20dfb04f54187e6a7dd95cdbfe83de341b2 Mon Sep 17 00:00:00 2001 From: Martin Weinelt Date: Mon, 18 May 2026 02:07:33 +0200 Subject: [PATCH] python3Packages.scales: pin to setuptools_80 --- pkgs/development/python-modules/scales/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/scales/default.nix b/pkgs/development/python-modules/scales/default.nix index e258bdf045f2..a0809ee2c5f3 100644 --- a/pkgs/development/python-modules/scales/default.nix +++ b/pkgs/development/python-modules/scales/default.nix @@ -5,7 +5,7 @@ pytestCheckHook, fetchpatch2, six, - setuptools, + setuptools_80, }: buildPythonPackage rec { @@ -34,7 +34,7 @@ buildPythonPackage rec { done; ''; - build-system = [ setuptools ]; + build-system = [ setuptools_80 ]; dependencies = [ six ];