python3Packages.latexify-py: disable for python 3.14+ (#497362)

This commit is contained in:
Sandro
2026-03-26 15:20:45 +00:00
committed by GitHub
@@ -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";