From 6b1aadc9627deae7d361d25e202c265c0ced4d31 Mon Sep 17 00:00:00 2001 From: Tom Hunze Date: Fri, 6 Mar 2026 22:12:00 +0100 Subject: [PATCH] python3Packages.latexify-py: disable for python 3.14+ AttributeError: module 'ast' has no attribute 'Num' https://docs.python.org/3/whatsnew/3.14.html#id9 --- pkgs/development/python-modules/latexify-py/default.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/pkgs/development/python-modules/latexify-py/default.nix b/pkgs/development/python-modules/latexify-py/default.nix index 2172e59dc39d..c647d7159e59 100644 --- a/pkgs/development/python-modules/latexify-py/default.nix +++ b/pkgs/development/python-modules/latexify-py/default.nix @@ -1,6 +1,7 @@ { lib, buildPythonPackage, + pythonAtLeast, dill, fetchFromGitHub, hatchling, @@ -12,6 +13,10 @@ buildPythonPackage rec { version = "0.4.4"; pyproject = true; + # AttributeError: module 'ast' has no attribute 'Num' + # https://docs.python.org/3/whatsnew/3.14.html#id9 + disabled = pythonAtLeast "3.14"; + src = fetchFromGitHub { owner = "google"; repo = "latexify_py";