From 467e802f223b7d13d12c9a7ae3495eef8a31b11a Mon Sep 17 00:00:00 2001 From: Gaetan Lepage Date: Mon, 16 Sep 2024 00:00:48 +0200 Subject: [PATCH] python312Packages.pyhanko: mark as broken on darwin --- pkgs/development/python-modules/pyhanko/default.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/pyhanko/default.nix b/pkgs/development/python-modules/pyhanko/default.nix index 947f3911ce3d..0e98b38b46a9 100644 --- a/pkgs/development/python-modules/pyhanko/default.nix +++ b/pkgs/development/python-modules/pyhanko/default.nix @@ -1,5 +1,6 @@ { lib, + stdenv, aiohttp, asn1crypto, buildPythonPackage, @@ -122,5 +123,8 @@ buildPythonPackage rec { changelog = "https://github.com/MatthiasValvekens/pyHanko/blob/v${version}/docs/changelog.rst"; license = licenses.mit; maintainers = [ ]; + # Most tests fail with: + # OSError: One or more parameters passed to a function were not valid. + broken = stdenv.isDarwin; }; }