From 8e4f6c078d1bc0d813a6e6017ce4cfccbd8cc373 Mon Sep 17 00:00:00 2001 From: Martin Weinelt Date: Thu, 25 Jun 2026 10:57:56 +0200 Subject: [PATCH] python3Packages.fusepy: skip imports check on darwin Importing fusepy in the build sandbox cannot find the required runtime libraries. --- pkgs/development/python-modules/fusepy/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/python-modules/fusepy/default.nix b/pkgs/development/python-modules/fusepy/default.nix index 492418fdd3aa..51691711da24 100644 --- a/pkgs/development/python-modules/fusepy/default.nix +++ b/pkgs/development/python-modules/fusepy/default.nix @@ -31,7 +31,7 @@ buildPythonPackage (finalAttrs: { # No tests included doCheck = false; - pythonImportsCheck = [ "fuse" ]; + pythonImportsCheck = lib.optionals (!stdenv.hostPlatform.isDarwin) [ "fuse" ]; meta = { description = "Simple ctypes bindings for FUSE";