From aa3331175360dba3c808c9f0e04ea316bbf091c8 Mon Sep 17 00:00:00 2001 From: Sigmanificient Date: Thu, 26 Mar 2026 10:51:34 +0100 Subject: [PATCH] python3Packages.meraki: fix build --- pkgs/development/python-modules/meraki/default.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/pkgs/development/python-modules/meraki/default.nix b/pkgs/development/python-modules/meraki/default.nix index 53c4e96a37aa..b2f2b45da6fa 100644 --- a/pkgs/development/python-modules/meraki/default.nix +++ b/pkgs/development/python-modules/meraki/default.nix @@ -22,6 +22,11 @@ buildPythonPackage rec { hash = "sha256-B9eda7ccpCRGuBB2XfRI/Fz+MVBUIjFZzHYWfckQT2g="; }; + postPatch = '' + substituteInPlace pyproject.toml \ + --replace-fail "setuptools>=78.1.1,<79.0.0" "setuptools" + ''; + pythonRelaxDeps = [ "pytest" "setuptools"