2019-02-20 19:27:31 +00:00
|
|
|
{ lib, fetchPypi, buildPythonPackage, python, pkg-config, libX11
|
2020-12-07 23:59:22 +00:00
|
|
|
, SDL2, SDL2_image, SDL2_mixer, SDL2_ttf, libpng, libjpeg, portmidi, freetype
|
2013-06-09 05:12:15 +01:00
|
|
|
}:
|
2008-10-06 23:07:53 +01:00
|
|
|
|
2016-05-23 02:35:07 +01:00
|
|
|
buildPythonPackage rec {
|
2017-05-27 10:25:35 +01:00
|
|
|
pname = "pygame";
|
2020-12-25 16:55:26 +00:00
|
|
|
version = "2.0.1";
|
2007-08-09 18:33:18 +01:00
|
|
|
|
2019-02-20 19:27:31 +00:00
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2020-12-25 16:55:26 +00:00
|
|
|
sha256 = "8b1e7b63f47aafcdd8849933b206778747ef1802bd3d526aca45ed77141e4001";
|
2007-08-09 18:33:18 +01:00
|
|
|
};
|
|
|
|
|
2019-02-20 19:27:31 +00:00
|
|
|
nativeBuildInputs = [
|
2020-12-07 23:59:22 +00:00
|
|
|
pkg-config SDL2
|
2019-02-20 19:27:31 +00:00
|
|
|
];
|
|
|
|
|
2013-06-09 05:12:15 +01:00
|
|
|
buildInputs = [
|
2020-12-07 23:59:22 +00:00
|
|
|
SDL2 SDL2_image SDL2_mixer SDL2_ttf libpng libjpeg
|
2017-03-17 07:34:25 +00:00
|
|
|
portmidi libX11 freetype
|
2013-06-09 05:12:15 +01:00
|
|
|
];
|
|
|
|
|
2016-04-15 04:35:11 +01:00
|
|
|
# Tests fail because of no audio device and display.
|
|
|
|
doCheck = false;
|
2013-06-09 05:12:15 +01:00
|
|
|
|
2016-05-23 02:35:07 +01:00
|
|
|
preConfigure = ''
|
2016-04-15 04:35:11 +01:00
|
|
|
sed \
|
2019-05-03 21:30:04 +01:00
|
|
|
-e "s/origincdirs = .*/origincdirs = []/" \
|
|
|
|
-e "s/origlibdirs = .*/origlibdirs = []/" \
|
2020-12-07 23:59:22 +00:00
|
|
|
-e "/linux-gnu/d" \
|
2019-05-03 21:30:04 +01:00
|
|
|
-i buildconfig/config_unix.py
|
2016-05-23 02:35:07 +01:00
|
|
|
${lib.concatMapStrings (dep: ''
|
|
|
|
sed \
|
2019-05-03 21:30:04 +01:00
|
|
|
-e "/origincdirs =/a\ origincdirs += ['${lib.getDev dep}/include']" \
|
|
|
|
-e "/origlibdirs =/a\ origlibdirs += ['${lib.getLib dep}/lib']" \
|
|
|
|
-i buildconfig/config_unix.py
|
2016-05-23 02:35:07 +01:00
|
|
|
'') buildInputs
|
|
|
|
}
|
2019-05-03 21:30:04 +01:00
|
|
|
LOCALBASE=/ ${python.interpreter} buildconfig/config.py
|
2008-10-06 23:07:53 +01:00
|
|
|
'';
|
2007-08-09 18:33:18 +01:00
|
|
|
|
2019-02-20 19:27:31 +00:00
|
|
|
meta = with lib; {
|
2009-03-03 13:27:40 +00:00
|
|
|
description = "Python library for games";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "http://www.pygame.org/";
|
2016-05-23 02:35:07 +01:00
|
|
|
license = licenses.lgpl21Plus;
|
|
|
|
platforms = platforms.linux;
|
2007-08-09 18:33:18 +01:00
|
|
|
};
|
|
|
|
}
|