From 49dc08e4bc03f970cb919fa98cf9dff0f53e7edc Mon Sep 17 00:00:00 2001 From: Doron Behar Date: Sat, 21 Oct 2023 10:29:56 +0300 Subject: [PATCH] python311Packages.pysequoia: mark as broken on Darwin --- pkgs/development/python-modules/pysequoia/default.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/pysequoia/default.nix b/pkgs/development/python-modules/pysequoia/default.nix index c35412383016..4e48f1c49dd1 100644 --- a/pkgs/development/python-modules/pysequoia/default.nix +++ b/pkgs/development/python-modules/pysequoia/default.nix @@ -11,6 +11,7 @@ , pcsclite , stdenv , darwin +, libiconv }: buildPythonPackage rec { @@ -46,6 +47,7 @@ buildPythonPackage rec { ] ++ lib.optionals stdenv.isDarwin [ darwin.apple_sdk.frameworks.CoreFoundation darwin.apple_sdk.frameworks.Security + libiconv ]; pythonImportsCheck = [ "pysequoia" ]; @@ -56,5 +58,7 @@ buildPythonPackage rec { homepage = "https://sequoia-pgp.gitlab.io/pysequoia"; license = licenses.asl20; maintainers = with maintainers; [ doronbehar ]; + # Broken since the 0.1.20 update according to ofborg. The errors are not clear... + broken = stdenv.isDarwin; }; }