Commit 9b92ac6e authored by Andreas Zweili's avatar Andreas Zweili Committed by github-actions[bot]
Browse files

zipfile2: Mark as broken on Python 3.12

(cherry picked from commit d1828e7501f7a035feebe345521292ccd3aabec9)
parent baf51669
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
  };
}