From 7137547c00358f86bf6a9ea9e1f846dabaf27206 Mon Sep 17 00:00:00 2001 From: Hythera <87016780+Hythera@users.noreply.github.com> Date: Mon, 4 May 2026 22:00:49 +0200 Subject: [PATCH] python3Packages.utitools: mark broken on darwin --- pkgs/development/python-modules/utitools/default.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pkgs/development/python-modules/utitools/default.nix b/pkgs/development/python-modules/utitools/default.nix index f003e336e480..3888c79f1674 100644 --- a/pkgs/development/python-modules/utitools/default.nix +++ b/pkgs/development/python-modules/utitools/default.nix @@ -32,6 +32,9 @@ buildPythonPackage (finalAttrs: { nativeCheckInputs = [ pytestCheckHook ]; meta = { + # Requires pyobjc-framework-coreservices and pyobjc-framework-uniformtypeidentifiers + # which are currently not packaged in nixpgs. + broken = stdenv.hostPlatform.isDarwin; description = "Utilities for working with Uniform Type Identifiers"; homepage = "https://github.com/RhetTbull/utitools"; changelog = "https://github.com/RhetTbull/utitools/blob/${finalAttrs.src.tag}/CHANGELOG.md";