From d276fd09d8959486cb3c2bd2b23d28f13c1c63b9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sandro=20J=C3=A4ckel?= Date: Tue, 22 Jul 2025 01:18:26 +0200 Subject: [PATCH] python313Packages.osxphotos: add missing tzdata dependency, mark broken due to in tree missing utitools --- pkgs/development/python-modules/osxphotos/default.nix | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/pkgs/development/python-modules/osxphotos/default.nix b/pkgs/development/python-modules/osxphotos/default.nix index eece6a6c86b3..05c4962bf059 100644 --- a/pkgs/development/python-modules/osxphotos/default.nix +++ b/pkgs/development/python-modules/osxphotos/default.nix @@ -25,6 +25,7 @@ tenacity, textx, toml, + tzdata, wrapt, wurlitzer, xdg-base-dirs, @@ -67,6 +68,7 @@ buildPythonPackage rec { tenacity textx toml + tzdata wrapt wurlitzer xdg-base-dirs @@ -108,6 +110,7 @@ buildPythonPackage rec { changelog = "https://github.com/RhetTbull/osxphotos/blob/${src.tag}/CHANGELOG.md"; license = lib.licenses.mit; maintainers = with lib.maintainers; [ sigmanificient ]; - broken = stdenv.hostPlatform.isDarwin; + # missing utitools dependency + broken = true && stdenv.hostPlatform.isDarwin; }; }