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