From fe667f70bc428037627bac57d6598b258db60688 Mon Sep 17 00:00:00 2001 From: Stefan Frijters Date: Tue, 6 May 2025 00:46:38 +0200 Subject: [PATCH 1/2] python3Packages.latex2mathml: 3.77.0 -> 3.78.0 --- .../python-modules/latex2mathml/default.nix | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/pkgs/development/python-modules/latex2mathml/default.nix b/pkgs/development/python-modules/latex2mathml/default.nix index 0cf23f39e3e9..a7efb6665205 100644 --- a/pkgs/development/python-modules/latex2mathml/default.nix +++ b/pkgs/development/python-modules/latex2mathml/default.nix @@ -11,16 +11,16 @@ buildPythonPackage rec { pname = "latex2mathml"; - version = "3.77.0"; + version = "3.78.0"; pyproject = true; - disabled = pythonOlder "3.8"; + disabled = pythonOlder "3.9"; src = fetchFromGitHub { owner = "roniemartinez"; - repo = pname; - rev = version; - hash = "sha256-DLdSFMsNA0gD6Iw0kn+0IrbvyI0VEGOpz0ZYD48nRkY="; + repo = "latex2mathml"; + tag = version; + hash = "sha256-FB1VM2z9y17q+6/wv4oTrhe/rD2QzdAc0VMbFmcrIAw="; }; build-system = [ poetry-core ]; From 49e8a93af338e839cca557510a065f569b93db2d Mon Sep 17 00:00:00 2001 From: Stefan Frijters Date: Tue, 6 May 2025 00:46:54 +0200 Subject: [PATCH 2/2] python3Packages.latex2mathml: clean up meta --- pkgs/development/python-modules/latex2mathml/default.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/development/python-modules/latex2mathml/default.nix b/pkgs/development/python-modules/latex2mathml/default.nix index a7efb6665205..bbc45d55b25c 100644 --- a/pkgs/development/python-modules/latex2mathml/default.nix +++ b/pkgs/development/python-modules/latex2mathml/default.nix @@ -38,12 +38,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "latex2mathml" ]; - meta = with lib; { + meta = { description = "Pure Python library for LaTeX to MathML conversion"; homepage = "https://github.com/roniemartinez/latex2mathml"; - changelog = "https://github.com/roniemartinez/latex2mathml/releases/tag/${version}"; - license = licenses.mit; + changelog = "https://github.com/roniemartinez/latex2mathml/releases/tag/${src.tag}"; + license = lib.licenses.mit; mainProgram = "latex2mathml"; - maintainers = with maintainers; [ sfrijters ]; + maintainers = with lib.maintainers; [ sfrijters ]; }; }