python3Packages.blessed: disable test_sixel on darwin

This commit is contained in:
Gaetan Lepage
2025-12-30 23:41:28 +00:00
parent 32754d23c1
commit 83e69397be
@@ -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";