From fc149bad32bfab5e8004960cc053e8b3748cc2df Mon Sep 17 00:00:00 2001 From: Martin Weinelt Date: Sat, 16 May 2026 10:17:26 +0200 Subject: [PATCH] python3Packages.aiohasupervisor: drop wheel build dep --- pkgs/development/python-modules/aiohasupervisor/default.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pkgs/development/python-modules/aiohasupervisor/default.nix b/pkgs/development/python-modules/aiohasupervisor/default.nix index a4a3aaf8d4c1..f9a93a152ce4 100644 --- a/pkgs/development/python-modules/aiohasupervisor/default.nix +++ b/pkgs/development/python-modules/aiohasupervisor/default.nix @@ -29,7 +29,8 @@ buildPythonPackage rec { postPatch = '' substituteInPlace pyproject.toml \ --replace-fail 'version = "0.0.0"' 'version = "${version}"' \ - --replace-fail "setuptools>=68.0,<82.1" "setuptools" + --replace-fail "setuptools>=68.0,<82.1" "setuptools" \ + --replace-fail ', "wheel>=0.40,<0.47"' "" ''; build-system = [ setuptools ];