python3Packages.fusepy: skip imports check on darwin

Importing fusepy in the build sandbox cannot find the required runtime
libraries.
This commit is contained in:
Martin Weinelt
2026-06-25 10:57:56 +02:00
parent 798607c40e
commit 8e4f6c078d
@@ -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";