11 buildPythonPackage rec {
12 pname = "latex2mathml";
15 disabled = pythonOlder "3.8";
17 src = fetchFromGitHub {
18 owner = "roniemartinez";
21 hash = "sha256-CoWXWgu1baM5v7OC+OlRHZB0NkPue4qFzylJk4Xq2e4=";
36 # Disable code coverage in check phase
38 sed -i '/--cov/d' pyproject.toml
41 pythonImportsCheck = [ "latex2mathml" ];
44 description = "Pure Python library for LaTeX to MathML conversion";
45 homepage = "https://github.com/roniemartinez/latex2mathml";
46 changelog = "https://github.com/roniemartinez/latex2mathml/releases/tag/${version}";
47 license = licenses.mit;
48 maintainers = with maintainers; [ sfrijters ];