1{ lib, buildPythonPackage, fetchPypi, poppler_utils, netpbm }:
2
3buildPythonPackage rec {
4
5 pname = "pnglatex";
6 version = "1.1";
7
8 src = fetchPypi {
9 inherit pname version;
10 hash = "sha256-CZUGDUkmttO0BzFYbGFSNMPkWzFC/BW4NmAeOwz4Y9M=";
11 };
12
13 propagatedBuildInputs = [
14 poppler_utils
15 netpbm
16 ];
17
18 # There are no tests
19 doCheck = false;
20
21 meta = with lib; {
22 homepage = "https://github.com/MaT1g3R/pnglatex";
23 description = "a small program that converts LaTeX snippets to png";
24 license = licenses.gpl3Plus;
25 maintainers = with maintainers; [ GaetanLepage ];
26 };
27}