From e07edafb95211338ebeba5282f07639702582857 Mon Sep 17 00:00:00 2001 From: superherointj <5861043+superherointj@users.noreply.github.com> Date: Mon, 27 Feb 2023 16:34:46 -0300 Subject: python311Packages.pygame: marked broken for python >3.11 --- pkgs/development/python-modules/pygame/default.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pkgs/development/python-modules/pygame/default.nix b/pkgs/development/python-modules/pygame/default.nix index d89ca3dde70..7155ec3778e 100644 --- a/pkgs/development/python-modules/pygame/default.nix +++ b/pkgs/development/python-modules/pygame/default.nix @@ -1,6 +1,7 @@ { stdenv, lib, substituteAll, fetchFromGitHub, buildPythonPackage, python, pkg-config, libX11 , SDL2, SDL2_image, SDL2_mixer, SDL2_ttf, libpng, libjpeg, portmidi, freetype, fontconfig , AppKit +, pythonAtLeast }: buildPythonPackage rec { @@ -75,5 +76,7 @@ buildPythonPackage rec { license = licenses.lgpl21Plus; maintainers = with maintainers; [ emilytrau ]; platforms = platforms.unix; + # fatal error: longintrepr.h: No such file or directory. + broken = pythonAtLeast "3.11"; # At 2022-02-27 }; } -- cgit 1.4.1