python3Packages.pnglatex: init at 1.1

This commit is contained in:
Gaetan Lepage 2023-03-23 15:00:22 +01:00
parent 6c79e12046
commit 2c4c61b6cd
3 changed files with 31 additions and 0 deletions

View File

@ -0,0 +1,27 @@
{ lib, buildPythonPackage, fetchPypi, poppler_utils, netpbm }:
buildPythonPackage rec {
pname = "pnglatex";
version = "1.1";
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 ];
};
}

View File

@ -32167,6 +32167,8 @@ with pkgs;
pluto = callPackage ../applications/networking/cluster/pluto { };
pnglatex = with python3Packages; toPythonApplication pnglatex;
polybar = callPackage ../applications/misc/polybar { };
polybarFull = callPackage ../applications/misc/polybar {

View File

@ -7552,6 +7552,8 @@ self: super: with self; {
pmw = callPackage ../development/python-modules/pmw { };
pnglatex = callPackage ../development/python-modules/pnglatex { };
pocket = callPackage ../development/python-modules/pocket { };
podcastparser = callPackage ../development/python-modules/podcastparser { };