lol

python312Packages.rfc7464: disable

+4
+4
pkgs/development/python-modules/rfc7464/default.nix
··· 2 2 buildPythonPackage, 3 3 fetchPypi, 4 4 lib, 5 + pythonAtLeast, 5 6 }: 6 7 7 8 buildPythonPackage rec { 8 9 pname = "rfc7464"; 9 10 version = "17.7.0"; 10 11 format = "setuptools"; 12 + 13 + # AttributeError: module 'configparser' has no attribute 'SafeConfigParser'. Did you mean: 'RawConfigParser'? 14 + disabled = pythonAtLeast "3.12"; 11 15 12 16 src = fetchPypi { 13 17 inherit pname version;