Merge pull request #304471 from pbsds/fix-pygame-1713251863

python312Packages.pygame: unbreak
This commit is contained in:
OTABI Tomoya 2024-05-02 09:58:15 +09:00 committed by GitHub
commit b8e911463e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1,6 +1,7 @@
{ stdenv
, lib
, substituteAll
, fetchpatch
, fetchFromGitHub
, buildPythonPackage
, pythonOlder
@ -61,6 +62,13 @@ buildPythonPackage rec {
})
# Skip tests that should be disabled without video driver
./skip-surface-tests.patch
# removes distutils unbreaking py312, part of https://github.com/pygame/pygame/pull/4211
(fetchpatch {
name = "remove-distutils.patch";
url = "https://github.com/pygame/pygame/commit/6038e7d6583a7a25fcc6e15387cf6240e427e5a7.patch";
hash = "sha256-HxcYjjhsu/Y9HiK9xDvY4X5dgWPP4XFLxdYGXC6tdWM=";
})
];
postPatch = ''