From 225752be5cb9fb7353ca6d36d3584200fa3f0d4e Mon Sep 17 00:00:00 2001 From: natsukium Date: Sat, 8 Jun 2024 21:48:39 +0900 Subject: [PATCH] python311Packages.einops: set __darwinAllowLocalNetworking --- pkgs/development/python-modules/einops/default.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pkgs/development/python-modules/einops/default.nix b/pkgs/development/python-modules/einops/default.nix index e212894380ca..4a6dfc6ab777 100644 --- a/pkgs/development/python-modules/einops/default.nix +++ b/pkgs/development/python-modules/einops/default.nix @@ -55,6 +55,8 @@ buildPythonPackage rec { disabledTestPaths = [ "tests/test_layers.py" ]; + __darwinAllowLocalNetworking = true; + meta = with lib; { description = "Flexible and powerful tensor operations for readable and reliable code"; homepage = "https://github.com/arogozhnikov/einops";