From 33a4b4235dd0ba30a9054ff40e44456850ef27e4 Mon Sep 17 00:00:00 2001 From: Nick Cao Date: Mon, 23 Feb 2026 08:29:41 -0500 Subject: [PATCH] python313Packages.picosvg: disable failing tests --- pkgs/development/python-modules/picosvg/default.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/pkgs/development/python-modules/picosvg/default.nix b/pkgs/development/python-modules/picosvg/default.nix index 0e6b4aabee6f..027789e401e3 100644 --- a/pkgs/development/python-modules/picosvg/default.nix +++ b/pkgs/development/python-modules/picosvg/default.nix @@ -34,6 +34,11 @@ buildPythonPackage rec { # a few tests are failing on aarch64 doCheck = !stdenv.hostPlatform.isAarch64; + disabledTests = [ + # test fixtures need to be regenerated after skia-pathops update + "test_topicosvg" + ]; + meta = { description = "Tool to simplify SVGs"; mainProgram = "picosvg";