Unverified Commit 887fdbc8 authored by Doron Behar's avatar Doron Behar Committed by GitHub
Browse files

Merge pull request #314745 from romildo/upd.latex2pydata

python312Packages.latex2pydata: init at 0.2.0
parents 8f2d1bf9 f27746b0
Loading
Loading
Loading
Loading
+34 −0
Original line number Diff line number Diff line
{ 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 ];
  };
}
+2 −0
Original line number Diff line number Diff line
@@ -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 { };