2022-07-18 16:21:45 +00:00
|
|
|
{ lib, buildPythonPackage, fetchurl, isPy27, renpy
|
2024-04-21 15:54:59 +00:00
|
|
|
, cython_0, SDL2, SDL2_image, SDL2_ttf, SDL2_mixer, libjpeg, libpng }:
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
2024-01-13 08:15:51 +00:00
|
|
|
pname = "pygame-sdl2";
|
2020-04-24 23:36:52 +00:00
|
|
|
version = "2.1.0";
|
2024-01-02 11:29:13 +00:00
|
|
|
format = "setuptools";
|
2022-07-18 16:21:45 +00:00
|
|
|
renpy_version = renpy.base_version;
|
2020-04-24 23:36:52 +00:00
|
|
|
name = "${pname}-${version}-${renpy_version}";
|
|
|
|
|
|
|
|
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";
|
|
|
|
hash = "sha256-mrfrsRAVEqw7fwtYdeATp/8AtMn74x9pJEXwYZPOl2I=";
|
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-04-21 15:54:59 +00:00
|
|
|
SDL2.dev cython_0
|
2020-04-24 23:36:52 +00:00
|
|
|
];
|
|
|
|
|
|
|
|
buildInputs = [
|
|
|
|
SDL2 SDL2_image SDL2_ttf SDL2_mixer
|
|
|
|
libjpeg libpng
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
|
|
doCheck = isPy27; # python3 tests are non-functional
|
|
|
|
|
|
|
|
postInstall = ''
|
|
|
|
( cd "$out"/include/python*/ ;
|
|
|
|
ln -s pygame-sdl2 pygame_sdl2 || true ; )
|
|
|
|
'';
|
|
|
|
|
2021-01-15 22:18:51 +00:00
|
|
|
meta = with lib; {
|
2020-04-24 23:36:52 +00:00
|
|
|
description = "A reimplementation of parts of pygame API using SDL2";
|
|
|
|
homepage = "https://github.com/renpy/pygame_sdl2";
|
|
|
|
# Some parts are also available under Zlib License
|
|
|
|
license = licenses.lgpl2;
|
|
|
|
maintainers = with maintainers; [ raskin ];
|
|
|
|
};
|
|
|
|
}
|