lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

python312Packages.qt5reactor: disable

It uses versioneer, which is incompatible with Python 3.12, and upstream
hasn't seen a commit in over a year.

+4
+4
pkgs/development/python-modules/qt5reactor/default.nix
··· 1 1 { 2 2 lib, 3 3 buildPythonPackage, 4 + pythonAtLeast, 4 5 fetchPypi, 5 6 pyqt5, 6 7 twisted, ··· 12 13 pname = "qt5reactor"; 13 14 version = "0.6.3"; 14 15 format = "setuptools"; 16 + 17 + # AttributeError: module 'configparser' has no attribute 'SafeConfigParser' 18 + disabled = pythonAtLeast "3.12"; 15 19 16 20 src = fetchPypi { 17 21 inherit pname version;