python312Packages.latex2pydata: init at 0.2.0

This commit is contained in:
José Romildo 2024-05-26 00:28:59 -03:00
parent 30006917d1
commit f27746b0df
2 changed files with 36 additions and 0 deletions

View File

@ -0,0 +1,34 @@
{ lib
, fetchPypi
, buildPythonPackage
, setuptools
, pytestCheckHook
}:
buildPythonPackage rec {
pname = "latex2pydata";
version = "0.2.0";
format = "pyproject";
src = fetchPypi {
inherit pname version;
hash = "sha256-lFYGBFox7fv/vlfqZN3xsh9UIRCQ+C5Cizq9j4RTcJ0=";
};
nativeBuildInputs = [
setuptools
];
nativeCheckInputs = [
pytestCheckHook
];
meta = {
homepage = "https://github.com/gpoore/latex2pydata";
description = "Send data from LaTeX to Python using Python literal format";
license = lib.licenses.bsd3;
platforms = lib.platforms.unix;
maintainers = with lib.maintainers; [ romildo ];
};
}

View File

@ -6501,6 +6501,8 @@ self: super: with self; {
latex2mathml = callPackage ../development/python-modules/latex2mathml { };
latex2pydata = callPackage ../development/python-modules/latex2pydata { };
latexcodec = callPackage ../development/python-modules/latexcodec { };
latexify-py = callPackage ../development/python-modules/latexify-py { };