about summary refs log tree commit diff
diff options
context:
space:
mode:
authorPeder Bergebakken Sundt <pbsds@hotmail.com>2024-05-01 00:35:22 +0200
committerPeder Bergebakken Sundt <pbsds@hotmail.com>2024-05-01 23:53:19 +0200
commit1eeb94a4e3f75b4760d540d7e2ef3fcfe24feb93 (patch)
tree973e08c87bbababa7670795bc85a9ee552efbaee
parent0224fcf295cd3803e1ee1f66e27c6e94cd9eb703 (diff)
python311Packages.pygame-gui: switch to pygame-ce
happened upstream a year ago: https://github.com/MyreMylar/pygame_gui/commit/aa67f1e30a2e3d0e5414277bf54c437cf77195b7
became required as of https://github.com/MyreMylar/pygame_gui/pull/522
-rw-r--r--pkgs/development/python-modules/pygame-gui/default.nix7
1 files changed, 5 insertions, 2 deletions
diff --git a/pkgs/development/python-modules/pygame-gui/default.nix b/pkgs/development/python-modules/pygame-gui/default.nix
index e2314f9c6e920..0b96a4ec9c9b2 100644
--- a/pkgs/development/python-modules/pygame-gui/default.nix
+++ b/pkgs/development/python-modules/pygame-gui/default.nix
@@ -2,7 +2,7 @@
 , pkgs
 , buildPythonPackage
 , fetchFromGitHub
-, pygame
+, pygame-ce
 , python-i18n
 , pytestCheckHook
 }:
@@ -20,7 +20,10 @@ buildPythonPackage rec {
     hash = "sha256-IXU00Us1odbfS7jLPMYuCPv2l/5TUZdYKES7xHs+EWg=";
   };
 
-  propagatedBuildInputs = [ pygame python-i18n ];
+  propagatedBuildInputs = [
+    pygame-ce
+    python-i18n
+  ];
 
   postPatch = ''
     substituteInPlace pygame_gui/core/utility.py \