From 83e69397be1d13c5f5580e3ef8972efcd204aa6d Mon Sep 17 00:00:00 2001 From: Gaetan Lepage Date: Tue, 30 Dec 2025 23:41:28 +0000 Subject: [PATCH] python3Packages.blessed: disable test_sixel on darwin --- pkgs/development/python-modules/blessed/default.nix | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/pkgs/development/python-modules/blessed/default.nix b/pkgs/development/python-modules/blessed/default.nix index 659f3523d5b3..82c357dfdb8a 100644 --- a/pkgs/development/python-modules/blessed/default.nix +++ b/pkgs/development/python-modules/blessed/default.nix @@ -1,5 +1,6 @@ { lib, + stdenv, buildPythonPackage, fetchFromGitHub, flit-core, @@ -41,6 +42,11 @@ buildPythonPackage { rm tox.ini ''; + disabledTestPaths = lib.optionals stdenv.hostPlatform.isDarwin [ + # Fail with several AssertionError + "tests/test_sixel.py" + ]; + meta = { homepage = "https://github.com/jquast/blessed"; description = "Thin, practical wrapper around terminal capabilities in Python";