nixpkgs/pkgs/development/python-modules/pygame/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

85 lines
2.3 KiB
Nix
Raw Normal View History

2021-08-25 12:06:46 +00:00
{ stdenv, lib, substituteAll, fetchFromGitHub, buildPythonPackage, python, pkg-config, libX11
, SDL2, SDL2_image, SDL2_mixer, SDL2_ttf, libpng, libjpeg, portmidi, freetype, fontconfig
2021-08-25 12:06:46 +00:00
, AppKit
, pythonOlder
}:
2016-05-23 01:35:07 +00:00
buildPythonPackage rec {
pname = "pygame";
2023-09-15 12:06:47 +00:00
version = "2.5.1";
disabled = pythonOlder "3.6";
format = "setuptools";
2021-08-25 12:06:46 +00:00
src = fetchFromGitHub {
owner = pname;
repo = pname;
2023-09-15 12:06:47 +00:00
rev = "refs/tags/${version}";
# Unicode file names lead to different checksums on HFS+ vs. other
# filesystems because of unicode normalisation. The documentation
# has such files and will be removed.
2023-09-15 12:06:47 +00:00
hash = "sha256-0mVbjfNYTfuo8uyd7NFKlneUZMt78mcitQ5nCgPxmFs=";
2022-05-17 19:10:33 +00:00
postFetch = "rm -rf $out/docs/reST";
};
patches = [
# Patch pygame's dependency resolution to let it find build inputs
(substituteAll {
src = ./fix-dependency-finding.patch;
buildinputs_include = builtins.toJSON (builtins.concatMap (dep: [
"${lib.getDev dep}/"
"${lib.getDev dep}/include"
"${lib.getDev dep}/include/SDL2"
]) buildInputs);
buildinputs_lib = builtins.toJSON (builtins.concatMap (dep: [
"${lib.getLib dep}/"
"${lib.getLib dep}/lib"
]) buildInputs);
})
];
postPatch = ''
substituteInPlace src_py/sysfont.py \
--replace 'path="fc-list"' 'path="${fontconfig}/bin/fc-list"' \
--replace /usr/X11/bin/fc-list ${fontconfig}/bin/fc-list
'';
nativeBuildInputs = [
pkg-config SDL2
];
buildInputs = [
SDL2 SDL2_image SDL2_mixer SDL2_ttf libpng libjpeg
2017-03-17 07:34:25 +00:00
portmidi libX11 freetype
] ++ lib.optionals stdenv.isDarwin [
2021-08-25 12:06:46 +00:00
AppKit
];
2016-05-23 01:35:07 +00:00
preConfigure = ''
${python.pythonForBuild.interpreter} buildconfig/config.py
'';
checkPhase = ''
runHook preCheck
# No audio or video device in test environment
export SDL_VIDEODRIVER=dummy
export SDL_AUDIODRIVER=disk
export SDL_DISKAUDIOFILE=/dev/null
${python.interpreter} -m pygame.tests -v --exclude opengl,timing --time_out 300
runHook postCheck
'';
pythonImportsCheck = [ "pygame" ];
meta = with lib; {
description = "Python library for games";
homepage = "https://www.pygame.org/";
2016-05-23 01:35:07 +00:00
license = licenses.lgpl21Plus;
2022-02-11 04:45:03 +00:00
maintainers = with maintainers; [ emilytrau ];
platforms = platforms.unix;
};
}