From 3c6f8e70701a2305cdc95170cd4590c4616bb634 Mon Sep 17 00:00:00 2001 From: Rafael Ieda Date: Tue, 4 Nov 2025 15:11:03 -0300 Subject: [PATCH] python3Packages.pynest2d: fix build --- pkgs/development/python-modules/pynest2d/default.nix | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/pkgs/development/python-modules/pynest2d/default.nix b/pkgs/development/python-modules/pynest2d/default.nix index 87cbebb03d7f..5fb72a4cbdb0 100644 --- a/pkgs/development/python-modules/pynest2d/default.nix +++ b/pkgs/development/python-modules/pynest2d/default.nix @@ -7,6 +7,7 @@ libnest2d, sip4, clipper, + distutils, }: buildPythonPackage rec { @@ -25,8 +26,14 @@ buildPythonPackage rec { libnest2d sip4 clipper + distutils ]; - nativeBuildInputs = [ cmake ]; + nativeBuildInputs = [ + cmake + sip4 + ]; + + strictDeps = true; CLIPPER_PATH = "${clipper.out}";