From 91688030087ffe07e3558912128225b3607af147 Mon Sep 17 00:00:00 2001 From: Colin Date: Wed, 9 Aug 2023 21:08:32 +0000 Subject: [PATCH] seaborn (visidata dep): fix build --- overlays/disable-flakey-tests.nix | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/overlays/disable-flakey-tests.nix b/overlays/disable-flakey-tests.nix index f5ed8c14..9a6ba2f6 100644 --- a/overlays/disable-flakey-tests.nix +++ b/overlays/disable-flakey-tests.nix @@ -63,6 +63,14 @@ in { "pyarrow/tests/test_flight.py" ]; }); + + seaborn = py-prev.seaborn.overridePythonAttrs (upstream: { + # 2023/08/09 + disabledTestPaths = (upstream.disabledTestPaths or []) ++ [ + "tests/test_categorical.py" + "tests/test_core.py" + ]; + }); }) ];