Commit 8ef2c4f9 authored by Leah Amelia Chen's avatar Leah Amelia Chen
Browse files

renpy: unbreak by compiling with Cython 0.x

Ren'Py does not like Cython 3.x :(
See renpy/renpy#5359.
parent 7689655b
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -25,7 +25,9 @@ in stdenv.mkDerivation rec {
  nativeBuildInputs = [
    pkg-config
    makeWrapper
    python3.pkgs.cython
    # Ren'Py currently does not compile on Cython 3.x.
    # See https://github.com/renpy/renpy/issues/5359
    python3.pkgs.cython_0
    python3.pkgs.setuptools
  ];