From 8486ce0d34a4f19752837ae08ae2debfdb76bfd6 Mon Sep 17 00:00:00 2001 From: Harinn Date: Tue, 12 May 2026 15:15:04 +0700 Subject: [PATCH] python3Packages.aiorpcx: allow local networking on darwin --- pkgs/development/python-modules/aiorpcx/default.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pkgs/development/python-modules/aiorpcx/default.nix b/pkgs/development/python-modules/aiorpcx/default.nix index db81da35fc38..50bb05f7ac11 100644 --- a/pkgs/development/python-modules/aiorpcx/default.nix +++ b/pkgs/development/python-modules/aiorpcx/default.nix @@ -52,6 +52,8 @@ buildPythonPackage rec { pythonImportsCheck = [ "aiorpcx" ]; + __darwinAllowLocalNetworking = true; + meta = { description = "Transport, protocol and framing-independent async RPC client and server implementation"; homepage = "https://github.com/kyuupichan/aiorpcX";