python3Packages.urlpy: remove superfluous pythonAtLeast

This commit is contained in:
Robert Schütz
2026-01-19 22:47:35 -08:00
parent 776f2d99e6
commit dcd131e13a
@@ -4,7 +4,6 @@
buildPythonPackage,
publicsuffix2,
pytestCheckHook,
pythonAtLeast,
}:
buildPythonPackage rec {
pname = "urlpy";
@@ -24,7 +23,7 @@ buildPythonPackage rec {
nativeCheckInputs = [ pytestCheckHook ];
disabledTests = lib.optionals (pythonAtLeast "3.9") [
disabledTests = [
# Fails with "AssertionError: assert 'unknown' == ''"
"test_unknown_protocol"
];