From 9b92ac6e5d55bf13e26845943ecbcd17b22d2cd3 Mon Sep 17 00:00:00 2001 From: Andreas Zweili Date: Sat, 25 May 2024 13:02:20 +0200 Subject: [PATCH] zipfile2: Mark as broken on Python 3.12 (cherry picked from commit d1828e7501f7a035feebe345521292ccd3aabec9) --- pkgs/development/python-modules/zipfile2/default.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pkgs/development/python-modules/zipfile2/default.nix b/pkgs/development/python-modules/zipfile2/default.nix index e16a0cc6b25b..967497c00966 100644 --- a/pkgs/development/python-modules/zipfile2/default.nix +++ b/pkgs/development/python-modules/zipfile2/default.nix @@ -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 }; }