python3Packages.latex2mathml: refactor

This commit is contained in:
Stefan Frijters 2024-05-08 14:05:20 +02:00
parent ddf728e50b
commit 81dea6df5c
No known key found for this signature in database
GPG Key ID: 7619A6BC6E7DFA6F
1 changed files with 3 additions and 3 deletions

View File

@ -11,6 +11,7 @@
buildPythonPackage rec {
pname = "latex2mathml";
version = "3.77.0";
pyproject = true;
disabled = pythonOlder "3.8";
@ -21,9 +22,7 @@ buildPythonPackage rec {
hash = "sha256-DLdSFMsNA0gD6Iw0kn+0IrbvyI0VEGOpz0ZYD48nRkY=";
};
format = "pyproject";
nativeBuildInputs = [
build-system = [
poetry-core
];
@ -45,6 +44,7 @@ buildPythonPackage rec {
homepage = "https://github.com/roniemartinez/latex2mathml";
changelog = "https://github.com/roniemartinez/latex2mathml/releases/tag/${version}";
license = licenses.mit;
mainProgram = "latex2mathml";
maintainers = with maintainers; [ sfrijters ];
};
}