python3Packages.holoviews: disable broken test on Darwin

test_categorical_axis_fontsize_both fails due to rendering differences.

Changed files
+5
pkgs
development
python-modules
holoviews
+5
pkgs/development/python-modules/holoviews/default.nix
···
{
lib,
buildPythonPackage,
fetchFromGitHub,
···
# ModuleNotFoundError: No module named 'param'
"test_no_blocklist_imports"
];
pythonImportsCheck = [ "holoviews" ];
···
{
lib,
+
stdenv,
buildPythonPackage,
fetchFromGitHub,
···
# ModuleNotFoundError: No module named 'param'
"test_no_blocklist_imports"
+
]
+
++ lib.optionals stdenv.hostPlatform.isDarwin [
+
# Fails due to font rendering differences
+
"test_categorical_axis_fontsize_both"
];
pythonImportsCheck = [ "holoviews" ];