img2pdf: make a python package

This commit is contained in:
Symphorien Gibol
2020-07-16 12:00:00 +00:00
committed by Dmitry Kalinkin
parent ba4f0c63e4
commit 293d7c3933
3 changed files with 7 additions and 6 deletions

View File

@@ -0,0 +1,24 @@
{ lib, pillow, fetchPypi, buildPythonPackage, isPy27 }:
buildPythonPackage rec {
pname = "img2pdf";
version = "0.3.6";
disabled = isPy27;
src = fetchPypi {
inherit pname version;
sha256 = "1yx0ljbg7phpix507wq584qvspp2jgax7flpp1148pxpc2d51mcc";
};
propagatedBuildInputs = [
pillow
];
meta = with lib; {
description = "Convert images to PDF via direct JPEG inclusion";
homepage = "https://gitlab.mister-muffin.de/josch/img2pdf";
license = licenses.lgpl2;
platforms = platforms.unix;
maintainers = [ maintainers.veprbl ];
};
}