Commit 6c601146 authored by Peder Bergebakken Sundt's avatar Peder Bergebakken Sundt Committed by Marcin Serwin
Browse files

python3Packages.pygame: switch to pygame-ce for python>=3.14

parent fd7f71e2
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -29,6 +29,8 @@

- `iroh` has been removed and split up into `iroh-dns-server` and `iroh-relay`.

- `python3Packages.pygame` has been been renamed to `python3Packages.pygame-original`, the attribute `python3Packages.pygame` will from python 3.14 default to the more actively maintained `python3Packages.pygame-ce`

- `python3Packages.gradio` has been updated to version 6. See upstream's migration guide at https://www.gradio.app/main/guides/gradio-6-migration-guide.

- `vicinae` has been updated to v0.17. Version 0.17 contains a complete overhaul of the configuration system. For update instructions, see the [release notes for v0.17.0](https://github.com/vicinaehq/vicinae/releases/tag/v0.17.0) and the [upstream configuration documentation](https://docs.vicinae.com/config).
+2 −1
Original line number Diff line number Diff line
@@ -13439,7 +13439,8 @@ self: super: with self; {
  pygal = callPackage ../development/python-modules/pygal { };
  pygame = pygame-original;
  # pygame-ce is better maintained upstream, the breaking point was https://github.com/NixOS/nixpkgs/pull/475917#issuecomment-3706940043
  pygame = if pythonAtLeast "3.14" then pygame-ce else pygame-original;
  pygame-ce = callPackage ../development/python-modules/pygame-ce { };