From 664ba4394e8732baacd9eea16d53403dcaf1f3ee Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Robert=20Sch=C3=BCtz?= Date: Wed, 14 Jan 2026 05:16:48 -0800 Subject: [PATCH] python314Packages.untokenize: disable It fails to build with AttributeError: 'Constant' object has no attribute 's' --- pkgs/development/python-modules/untokenize/default.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/untokenize/default.nix b/pkgs/development/python-modules/untokenize/default.nix index be7c41eed599..b12a9f382db7 100644 --- a/pkgs/development/python-modules/untokenize/default.nix +++ b/pkgs/development/python-modules/untokenize/default.nix @@ -2,6 +2,7 @@ lib, buildPythonPackage, fetchPypi, + pythonAtLeast, unittestCheckHook, }: @@ -10,6 +11,9 @@ buildPythonPackage rec { version = "0.1.1"; format = "setuptools"; + # https://github.com/myint/untokenize/issues/4 + disabled = pythonAtLeast "3.14"; + src = fetchPypi { inherit pname version; sha256 = "3865dbbbb8efb4bb5eaa72f1be7f3e0be00ea8b7f125c69cbd1f5fda926f37a2";