Unverified Commit 69b7f701 authored by Andreas Zweili's avatar Andreas Zweili Committed by GitHub
Browse files

zipfile2: Mark as broken on Python 3.12 (#314557)

parent a5f800ab
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -2,6 +2,7 @@
  buildPythonPackage,
  fetchFromGitHub,
  lib,
  pythonAtLeast,
}:

buildPythonPackage rec {
@@ -25,5 +26,6 @@ buildPythonPackage rec {
    description = "A backwards-compatible improved zipfile class";
    maintainers = with maintainers; [ genericnerdyusername ];
    license = licenses.psfl;
    broken = pythonAtLeast "3.12"; # tests are failing because the signature of ZipInfo._decodeExtra changed
  };
}