From 8f60e7ea6f0a7d241651d8d6ac4d3bfd40852fd5 Mon Sep 17 00:00:00 2001 From: Fernando Rodrigues Date: Tue, 13 May 2025 11:55:10 -0300 Subject: [PATCH] python313Packages.guestfs: mark broken Looks like it implictly calls a function that shouldn't be called implictly after 3.12. Signed-off-by: Fernando Rodrigues --- pkgs/development/python-modules/guestfs/default.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/pkgs/development/python-modules/guestfs/default.nix b/pkgs/development/python-modules/guestfs/default.nix index fd236d63c444..020809959b5f 100644 --- a/pkgs/development/python-modules/guestfs/default.nix +++ b/pkgs/development/python-modules/guestfs/default.nix @@ -1,5 +1,6 @@ { lib, + pythonAtLeast, buildPythonPackage, fetchurl, libguestfs, @@ -11,6 +12,10 @@ buildPythonPackage rec { version = "1.40.2"; format = "setuptools"; + # FIXME: "error: implicit declaration of function 'PyEval_ThreadsInitialized'" + # https://bugzilla.redhat.com/show_bug.cgi?id=2343777 + disabled = pythonAtLeast "3.13"; + src = fetchurl { url = "http://download.libguestfs.org/python/guestfs-${version}.tar.gz"; hash = "sha256-GCKwkhrIXPz0hPrwe3YrhlEr6TuDYQivDzpMlZ+CAzI=";