2023-03-27 19:17:25 +00:00
|
|
|
{ lib, buildPythonPackage, fetchPypi, poppler_utils, netpbm }:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
|
|
|
|
pname = "pnglatex";
|
|
|
|
version = "1.1";
|
2024-01-02 11:29:13 +00:00
|
|
|
format = "setuptools";
|
2023-03-27 19:17:25 +00:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
|
|
|
hash = "sha256-CZUGDUkmttO0BzFYbGFSNMPkWzFC/BW4NmAeOwz4Y9M=";
|
|
|
|
};
|
|
|
|
|
|
|
|
propagatedBuildInputs = [
|
|
|
|
poppler_utils
|
|
|
|
netpbm
|
|
|
|
];
|
|
|
|
|
|
|
|
# There are no tests
|
|
|
|
doCheck = false;
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
homepage = "https://github.com/MaT1g3R/pnglatex";
|
|
|
|
description = "a small program that converts LaTeX snippets to png";
|
2024-04-21 15:54:59 +00:00
|
|
|
mainProgram = "pnglatex";
|
2023-03-27 19:17:25 +00:00
|
|
|
license = licenses.gpl3Plus;
|
|
|
|
maintainers = with maintainers; [ GaetanLepage ];
|
|
|
|
};
|
|
|
|
}
|