From 844735ff6ec6976255c0a5f186471ef11e1a8400 Mon Sep 17 00:00:00 2001 From: Sarah Clark Date: Mon, 5 Jan 2026 18:55:28 -0800 Subject: [PATCH] python3Packages.mne: fix failing test on Python 3.14 https://github.com/mne-tools/mne-python/issues/13577 --- pkgs/development/python-modules/mne/default.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/pkgs/development/python-modules/mne/default.nix b/pkgs/development/python-modules/mne/default.nix index 3e90d29ff904..b967acbe362c 100644 --- a/pkgs/development/python-modules/mne/default.nix +++ b/pkgs/development/python-modules/mne/default.nix @@ -2,6 +2,7 @@ lib, buildPythonPackage, fetchFromGitHub, + pythonAtLeast, hatchling, hatch-vcs, numpy, @@ -90,6 +91,10 @@ buildPythonPackage rec { # flaky "test_fine_cal_systems" "test_simulate_raw_bem" + ] + ++ lib.optionals (pythonAtLeast "3.14") [ + #https://github.com/mne-tools/mne-python/issues/13577 + "test_set_montage_artinis_basic" ]; pytestFlag = [