2024-05-15 15:35:15 +00:00
|
|
|
{
|
|
|
|
lib,
|
|
|
|
buildPythonPackage,
|
|
|
|
fetchurl,
|
|
|
|
isPy27,
|
|
|
|
renpy,
|
|
|
|
cython_0,
|
|
|
|
SDL2,
|
|
|
|
SDL2_image,
|
|
|
|
SDL2_ttf,
|
|
|
|
SDL2_mixer,
|
|
|
|
libjpeg,
|
|
|
|
libpng,
|
|
|
|
setuptools,
|
|
|
|
}:
|
|
|
|
let
|
2024-01-13 08:15:51 +00:00
|
|
|
pname = "pygame-sdl2";
|
2020-04-24 23:36:52 +00:00
|
|
|
version = "2.1.0";
|
2022-07-18 16:21:45 +00:00
|
|
|
renpy_version = renpy.base_version;
|
2024-05-15 15:35:15 +00:00
|
|
|
in
|
|
|
|
|
|
|
|
buildPythonPackage {
|
|
|
|
inherit pname version;
|
2020-04-24 23:36:52 +00:00
|
|
|
name = "${pname}-${version}-${renpy_version}";
|
2024-05-15 15:35:15 +00:00
|
|
|
pyproject = true;
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2024-01-13 08:15:51 +00:00
|
|
|
url = "https://www.renpy.org/dl/${renpy_version}/pygame_sdl2-${version}+renpy${renpy_version}.tar.gz";
|
2024-09-26 11:04:55 +00:00
|
|
|
hash = "sha256-bcTrdXWLTCnZQ/fP5crKIPoqJiyz+o6s0PzRChV7TQE=";
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
# force rebuild of headers needed for install
|
|
|
|
prePatch = ''
|
|
|
|
rm -rf gen gen3
|
|
|
|
'';
|
|
|
|
|
2023-05-24 13:37:59 +00:00
|
|
|
# Remove build tag which produces invaild version
|
|
|
|
postPatch = ''
|
|
|
|
sed -i '2d' setup.cfg
|
|
|
|
'';
|
|
|
|
|
2020-04-24 23:36:52 +00:00
|
|
|
nativeBuildInputs = [
|
2024-05-15 15:35:15 +00:00
|
|
|
SDL2.dev
|
|
|
|
cython_0
|
|
|
|
setuptools
|
2020-04-24 23:36:52 +00:00
|
|
|
];
|
|
|
|
|
|
|
|
buildInputs = [
|
2024-05-15 15:35:15 +00:00
|
|
|
SDL2
|
|
|
|
SDL2_image
|
|
|
|
SDL2_ttf
|
|
|
|
SDL2_mixer
|
|
|
|
libjpeg
|
|
|
|
libpng
|
2020-04-24 23:36:52 +00:00
|
|
|
];
|
|
|
|
|
|
|
|
doCheck = isPy27; # python3 tests are non-functional
|
|
|
|
|
2024-05-15 15:35:15 +00:00
|
|
|
meta = {
|
2024-06-20 14:57:18 +00:00
|
|
|
description = "Reimplementation of parts of pygame API using SDL2";
|
2024-05-15 15:35:15 +00:00
|
|
|
homepage = "https://github.com/renpy/pygame_sdl2";
|
2024-06-05 15:53:02 +00:00
|
|
|
license = with lib.licenses; [
|
|
|
|
lgpl2
|
|
|
|
zlib
|
|
|
|
];
|
2024-05-15 15:35:15 +00:00
|
|
|
maintainers = with lib.maintainers; [ raskin ];
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
}
|