From 855d20d185fe67864e1a97895bbc44358abf780f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Robert=20Sch=C3=BCtz?= Date: Mon, 19 Jan 2026 22:38:04 -0800 Subject: [PATCH] python3Packages.persim: remove superfluous pythonAtLeast --- pkgs/development/python-modules/persim/default.nix | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/persim/default.nix b/pkgs/development/python-modules/persim/default.nix index ec3669359be4..9c8dbff7ac49 100644 --- a/pkgs/development/python-modules/persim/default.nix +++ b/pkgs/development/python-modules/persim/default.nix @@ -10,7 +10,6 @@ scikit-learn, scipy, pytestCheckHook, - pythonAtLeast, }: buildPythonPackage rec { @@ -44,7 +43,7 @@ buildPythonPackage rec { pythonImportsCheck = [ "persim" ]; - disabledTests = lib.optionals (pythonAtLeast "3.10") [ + disabledTests = [ # AttributeError: module 'collections' has no attribute 'Iterable' "test_empyt_diagram_list" "test_empty_diagram_list"