1{ lib
2, fetchPypi
3, buildPythonPackage
4, setuptools
5, pytestCheckHook
6}:
7
8buildPythonPackage rec {
9 pname = "latex2pydata";
10 version = "0.4.0";
11 pyproject = true;
12
13 src = fetchPypi {
14 inherit pname version;
15 hash = "sha256-Ega1cHSP187njyelb0yiCdpk08QZyObelRa2S79AE1E=";
16 };
17
18 build-system = [
19 setuptools
20 ];
21
22 nativeCheckInputs = [
23 pytestCheckHook
24 ];
25
26 meta = {
27 homepage = "https://github.com/gpoore/latex2pydata";
28 description = "Send data from LaTeX to Python using Python literal format";
29 license = lib.licenses.bsd3;
30 platforms = lib.platforms.unix;
31 maintainers = with lib.maintainers; [ romildo ];
32 };
33}