From 3059261b31c9bc21fc59125afe9e5c89cb1edd99 Mon Sep 17 00:00:00 2001 From: Peder Bergebakken Sundt Date: Wed, 9 Oct 2024 20:35:39 +0200 Subject: [PATCH] python312Packages.plotly: disable checks on darwin, unbreak --- pkgs/development/python-modules/plotly/default.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/plotly/default.nix b/pkgs/development/python-modules/plotly/default.nix index 8bd265181aa1..bb44019609dd 100644 --- a/pkgs/development/python-modules/plotly/default.nix +++ b/pkgs/development/python-modules/plotly/default.nix @@ -1,5 +1,6 @@ { lib, + stdenv, buildPythonPackage, fetchFromGitHub, setuptools, @@ -70,6 +71,9 @@ buildPythonPackage rec { scikit-image ]; + # the check inputs are broken on darwin + doCheck = !stdenv.hostPlatform.isDarwin; + disabledTests = [ # FAILED plotly/matplotlylib/mplexporter/tests/test_basic.py::test_legend_dots - AssertionError: assert '3' == '2' "test_legend_dots"