From 3677e88db0ed9803a9dfd6b3ad36398367948316 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Robert=20Sch=C3=BCtz?= Date: Mon, 19 Jan 2026 22:35:19 -0800 Subject: [PATCH] python3Packages.marshmallow-dataclass: remove superfluous pythonAtLeast --- .../python-modules/marshmallow-dataclass/default.nix | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/marshmallow-dataclass/default.nix b/pkgs/development/python-modules/marshmallow-dataclass/default.nix index 8a725de16474..1638fb33e17a 100644 --- a/pkgs/development/python-modules/marshmallow-dataclass/default.nix +++ b/pkgs/development/python-modules/marshmallow-dataclass/default.nix @@ -4,7 +4,6 @@ fetchFromGitHub, marshmallow, pytestCheckHook, - pythonAtLeast, setuptools, typeguard, typing-inspect, @@ -39,7 +38,7 @@ buildPythonPackage rec { "-Wignore::DeprecationWarning" ]; - disabledTests = lib.optionals (pythonAtLeast "3.10") [ + disabledTests = [ # TypeError: UserId is not a dataclass and cannot be turned into one. "test_newtype" ];