Unverified Commit 4dba904f authored by Sandro Jäckel's avatar Sandro Jäckel Committed by GitHub
Browse files

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

parents 3dcbff61 6b1aadc9
Loading
Loading
Loading
Loading
+5 −0
Original line number Diff line number Diff line
{
  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";