about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/pnglatex/default.nix
blob: d953678942bfb0ff85f16702beda409b00092f83 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
{ lib, buildPythonPackage, fetchPypi, poppler_utils, netpbm }:

buildPythonPackage rec {

  pname = "pnglatex";
  version = "1.1";
  format = "setuptools";

  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";
    license = licenses.gpl3Plus;
    maintainers = with maintainers; [ GaetanLepage ];
  };
}