python3Packages.pypass: remove superfluous pythonAtLeast

This commit is contained in:
Robert Schütz
2026-01-19 22:51:25 -08:00
parent a377f9593d
commit dfd04aefaa
@@ -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"
];