Unverified Commit 69d8ec50 authored by José Romildo Malaquias's avatar José Romildo Malaquias Committed by GitHub
Browse files

Merge pull request #231956 from romildo/fix.python-efl

pythonPackages.pythonefl: broken only with python 3.11
parents 8b75b96e 20a65903
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -48,6 +48,8 @@ buildPythonPackage rec {
    platforms = platforms.linux;
    license = with licenses; [ gpl3 lgpl3 ];
    maintainers = with maintainers; [ matejc ftrvxmtrx ] ++ teams.enlightenment.members;
    broken = true;
    # The generated files in the tarball aren't compatible with python 3.11
    # See https://sourceforge.net/p/enlightenment/mailman/message/37794291/
    broken = python.pythonAtLeast "3.11";
  };
}