Commit dcd131e1 authored by Robert Schütz's avatar Robert Schütz
Browse files

python3Packages.urlpy: remove superfluous pythonAtLeast

parent 776f2d99
Loading
Loading
Loading
Loading
+1 −2
Original line number Diff line number Diff line
@@ -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"
  ];