From 17fda221a70ca88e87efccb6a551d2746734fd2b Mon Sep 17 00:00:00 2001 From: Alex James Date: Sat, 8 Feb 2025 22:16:24 -0600 Subject: [PATCH] python3Packages.pyasynchat: fix build on sandboxed Darwin Otherwise the tests fail: https://gist.github.com/al3xtjames/edd6170880bd43709b055ea12ae2be64 --- pkgs/development/python-modules/pyasynchat/default.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pkgs/development/python-modules/pyasynchat/default.nix b/pkgs/development/python-modules/pyasynchat/default.nix index b8f7cd7641332..dd5a1df8f3edd 100644 --- a/pkgs/development/python-modules/pyasynchat/default.nix +++ b/pkgs/development/python-modules/pyasynchat/default.nix @@ -45,6 +45,8 @@ buildPythonPackage rec { "asynchat" ]; + __darwinAllowLocalNetworking = true; + meta = { description = "Make asynchat available for Python 3.12 onwards"; homepage = "https://github.com/simonrob/pyasynchat";