From dc4b03a2e4ce6a3544100a5b1df3bd96b05396ac Mon Sep 17 00:00:00 2001 From: Martin Weinelt Date: Sun, 13 Apr 2025 00:24:04 +0200 Subject: [PATCH] python3Packages.willow: disable failing test This is related to the AVIF migration from pillow-heif to mainline pillow. --- pkgs/development/python-modules/willow/default.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/pkgs/development/python-modules/willow/default.nix b/pkgs/development/python-modules/willow/default.nix index c8855befe48e..6dbd88fbcb1c 100644 --- a/pkgs/development/python-modules/willow/default.nix +++ b/pkgs/development/python-modules/willow/default.nix @@ -49,6 +49,11 @@ buildPythonPackage rec { wand ] ++ optional-dependencies.heif; + disabledTests = [ + # ValueError: Invalid quality setting + "test_save_avif_lossless" + ]; + meta = with lib; { description = "Python image library that sits on top of Pillow, Wand and OpenCV"; homepage = "https://github.com/torchbox/Willow/";