nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix

python3Packages.guestfs: 1.40.1 -> 1.40.2; mark broken on 3.13 (#406620)

authored by

Arne Keller and committed by
GitHub
5d0a347d f300617d

+7 -2
+7 -2
pkgs/development/python-modules/guestfs/default.nix
··· 1 1 { 2 2 lib, 3 + pythonAtLeast, 3 4 buildPythonPackage, 4 5 fetchurl, 5 6 libguestfs, ··· 9 8 10 9 buildPythonPackage rec { 11 10 pname = "guestfs"; 12 - version = "1.40.1"; 11 + version = "1.40.2"; 13 12 format = "setuptools"; 13 + 14 + # FIXME: "error: implicit declaration of function 'PyEval_ThreadsInitialized'" 15 + # https://bugzilla.redhat.com/show_bug.cgi?id=2343777 16 + disabled = pythonAtLeast "3.13"; 14 17 15 18 src = fetchurl { 16 19 url = "http://download.libguestfs.org/python/guestfs-${version}.tar.gz"; 17 - sha256 = "06a4b5xf1rkhnzfvck91n0z9mlkrgy90s9na5a8da2g4p776lhkf"; 20 + hash = "sha256-GCKwkhrIXPz0hPrwe3YrhlEr6TuDYQivDzpMlZ+CAzI="; 18 21 }; 19 22 20 23 propagatedBuildInputs = [