Unverified Commit ae63e4aa authored by Weijia Wang's avatar Weijia Wang Committed by GitHub
Browse files

Merge pull request #314949 from NixOS/backport-314557-to-release-24.05

[Backport release-24.05] zipfile2: Mark as broken on Python 3.12
parents 805a3848 9b92ac6e
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
  };
}