summary refs log tree commit diff
diff options
context:
space:
mode:
authorsuperherointj <5861043+superherointj@users.noreply.github.com>2023-02-27 16:34:46 -0300
committersuperherointj <5861043+superherointj@users.noreply.github.com>2023-02-28 09:46:05 -0300
commite07edafb95211338ebeba5282f07639702582857 (patch)
treea098341169b38ad3e29045417d6727033d7311e4
parent2af041ab44ce4b8c10b015ff3674c0852d193a75 (diff)
downloadnixpkgs-e07edafb95211338ebeba5282f07639702582857.tar
nixpkgs-e07edafb95211338ebeba5282f07639702582857.tar.gz
nixpkgs-e07edafb95211338ebeba5282f07639702582857.tar.bz2
nixpkgs-e07edafb95211338ebeba5282f07639702582857.tar.lz
nixpkgs-e07edafb95211338ebeba5282f07639702582857.tar.xz
nixpkgs-e07edafb95211338ebeba5282f07639702582857.tar.zst
nixpkgs-e07edafb95211338ebeba5282f07639702582857.zip
python311Packages.pygame: marked broken for python >3.11
-rw-r--r--pkgs/development/python-modules/pygame/default.nix3
1 files changed, 3 insertions, 0 deletions
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
   };
 }