From 63c417ccf61790025085ee42775dcfacb4092b3e Mon Sep 17 00:00:00 2001 From: Martin Weinelt Date: Mon, 19 May 2025 16:41:32 +0200 Subject: [PATCH] python313Packages.aiohasupervisor: relax setuptools constraint --- 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 d1025c881c86..53fb2a4e4c72 100644 --- a/pkgs/development/python-modules/aiohasupervisor/default.nix +++ b/pkgs/development/python-modules/aiohasupervisor/default.nix @@ -31,7 +31,8 @@ buildPythonPackage rec { postPatch = '' substituteInPlace pyproject.toml \ - --replace-fail 'version = "0.0.0"' 'version = "${version}"' + --replace-fail 'version = "0.0.0"' 'version = "${version}"' \ + --replace-fail 'setuptools>=68.0,<79.1' setuptools ''; build-system = [ setuptools ];