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

pythonPackages.pythonefl: broken only with python 3.11
This commit is contained in:
José Romildo Malaquias 2023-05-23 07:05:06 -03:00 committed by GitHub
commit 69d8ec50b5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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";
};
}