about summary refs log tree commit diff
path: root/pkgs/development/python-modules/img2pdf/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/python-modules/img2pdf/default.nix')
-rw-r--r--pkgs/development/python-modules/img2pdf/default.nix24
1 files changed, 24 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/img2pdf/default.nix b/pkgs/development/python-modules/img2pdf/default.nix
new file mode 100644
index 0000000000000..2fa46c2ed9d4d
--- /dev/null
+++ b/pkgs/development/python-modules/img2pdf/default.nix
@@ -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 ];
+  };
+}