1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-06-10 01:53:09 +09:00

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

[Backport release-24.05] zipfile2: Mark as broken on Python 3.12
This commit is contained in:
Weijia Wang 2024-05-31 12:31:25 +02:00 committed by GitHub
commit ae63e4aa52
Signed by: github
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
};
}