We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 449d1f7 + 9e5d4b3 commit 1901f96Copy full SHA for 1901f96
pkgs/development/python-modules/qt5reactor/default.nix
@@ -1,6 +1,7 @@
1
{
2
lib,
3
buildPythonPackage,
4
+ pythonAtLeast,
5
fetchPypi,
6
pyqt5,
7
twisted,
@@ -13,6 +14,9 @@ buildPythonPackage rec {
13
14
version = "0.6.3";
15
format = "setuptools";
16
17
+ # AttributeError: module 'configparser' has no attribute 'SafeConfigParser'
18
+ disabled = pythonAtLeast "3.12";
19
+
20
src = fetchPypi {
21
inherit pname version;
22
sha256 = "c3470a8a25d9a339f9ca6243502a9b2277f181d772b7acbff551d5bc363b7572";
0 commit comments