From 20a65903132c737e45167e66842cae669ff046a0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Romildo?= Date: Sun, 14 May 2023 22:14:15 -0300 Subject: [PATCH] pythonPackages.pythonefl: broken with python 3.11 --- pkgs/development/python-modules/python-efl/default.nix | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/pkgs/development/python-modules/python-efl/default.nix b/pkgs/development/python-modules/python-efl/default.nix index 77e6266ffd37..8df6ee96e7d9 100644 --- a/pkgs/development/python-modules/python-efl/default.nix +++ b/pkgs/development/python-modules/python-efl/default.nix @@ -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"; }; }