From 69b7f701f9e9c994e5cb58fe705ffcd90ab30542 Mon Sep 17 00:00:00 2001 From: Andreas Zweili Date: Sun, 26 May 2024 23:22:59 +0200 Subject: [PATCH] zipfile2: Mark as broken on Python 3.12 (#314557) --- 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 }; }