From a053a2e3ebb01d337651dedd99ec01e875ef8e21 Mon Sep 17 00:00:00 2001 From: Gaetan Lepage Date: Fri, 12 Dec 2025 12:49:45 +0000 Subject: [PATCH] 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; }) )