python312Packages.latex2pydata: init at 0.2.0
This commit is contained in:
parent
30006917d1
commit
f27746b0df
34
pkgs/development/python-modules/latex2pydata/default.nix
Normal file
34
pkgs/development/python-modules/latex2pydata/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
@ -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 { };
|
||||
|
Loading…
Reference in New Issue
Block a user