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

This commit is contained in:
Andreas Zweili 2024-05-26 23:22:59 +02:00 committed by GitHub
parent a5f800ab48
commit 69b7f701f9
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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
};
}