python3Packages.skytemple-ssb-emulator: fix for python>=3.14

Tracking: https://github.com/NixOS/nixpkgs/issues/475732
This commit is contained in:
Gaetan Lepage
2026-02-01 10:02:40 +00:00
parent c8a65aa8ee
commit a1f09d2f52
@@ -44,6 +44,13 @@ buildPythonPackage (finalAttrs: {
hash = "sha256-MSPqQmC70pq+sEM8zJrrFiz32dorOJxr2G/y2H4EUQI=";
};
env = {
# Python 3.14 compatibility
# error: the configured Python interpreter version (3.14) is newer than PyO3's maximum supported
# version (3.13)
PYO3_USE_ABI3_FORWARD_COMPATIBILITY = 1;
};
build-system = [
meson
setuptools