From dfd04aefaa326d79d6fcdf9df0c9fb736f63a599 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Robert=20Sch=C3=BCtz?= Date: Mon, 19 Jan 2026 22:51:25 -0800 Subject: [PATCH] python3Packages.pypass: remove superfluous pythonAtLeast --- pkgs/development/python-modules/pypass/default.nix | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/pkgs/development/python-modules/pypass/default.nix b/pkgs/development/python-modules/pypass/default.nix index ad8e17fc8bee..4e952df17c52 100644 --- a/pkgs/development/python-modules/pypass/default.nix +++ b/pkgs/development/python-modules/pypass/default.nix @@ -10,7 +10,6 @@ gnupg, pbr, pexpect, - pythonAtLeast, pytestCheckHook, setuptools, replaceVars, @@ -41,8 +40,7 @@ buildPythonPackage rec { }) ]; - # Remove enum34 requirement if Python >= 3.4 - pythonRemoveDeps = lib.optionals (pythonAtLeast "3.4") [ + pythonRemoveDeps = [ "enum34" ];