From e2d1c15d2ab01d29c44929276a2df4642622a912 Mon Sep 17 00:00:00 2001 From: Gaetan Lepage Date: Fri, 12 Dec 2025 12:49:13 +0000 Subject: [PATCH 1/2] python3Packages.crocoddyl: enable __darwinAllowLocalNetworking to fix build without sandbox --- pkgs/development/python-modules/crocoddyl/default.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pkgs/development/python-modules/crocoddyl/default.nix b/pkgs/development/python-modules/crocoddyl/default.nix index 5e5e449899f0..e1cdfe7e311d 100644 --- a/pkgs/development/python-modules/crocoddyl/default.nix +++ b/pkgs/development/python-modules/crocoddyl/default.nix @@ -50,5 +50,7 @@ toPythonModule ( pythonImportsCheck = [ "crocoddyl" ]; + + __darwinAllowLocalNetworking = true; }) ) From a053a2e3ebb01d337651dedd99ec01e875ef8e21 Mon Sep 17 00:00:00 2001 From: Gaetan Lepage Date: Fri, 12 Dec 2025 12:49:45 +0000 Subject: [PATCH 2/2] python3Packages.aligator: enable __darwinAllowLocalNetworking to fix build without sandbox --- pkgs/development/python-modules/aligator/default.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pkgs/development/python-modules/aligator/default.nix b/pkgs/development/python-modules/aligator/default.nix index 6ef954f53a0e..92527f7a5ed8 100644 --- a/pkgs/development/python-modules/aligator/default.nix +++ b/pkgs/development/python-modules/aligator/default.nix @@ -50,5 +50,7 @@ toPythonModule ( pythonImportsCheck = [ "aligator" ]; + + __darwinAllowLocalNetworking = true; }) )