nixpkgs/pkgs/development/python-modules/pdf2image/default.nix

22 lines
615 B
Nix
Raw Normal View History

{ stdenv, buildPythonPackage, fetchPypi, pillow, poppler_utils }:
buildPythonPackage rec {
pname = "pdf2image";
2018-11-04 10:35:09 +00:00
version = "1.0.0";
buildInputs = [ pillow poppler_utils ];
src = fetchPypi {
inherit pname version;
2018-11-04 10:35:09 +00:00
sha256 = "74607efb48a9e95289148d70af05a53dbef192010a44ac868437fb044842697d";
};
meta = with stdenv.lib; {
description = "A python module that wraps the pdftoppm utility to convert PDF to PIL Image object";
homepage = https://github.com/Belval/pdf2image;
license = licenses.mit;
maintainers = with maintainers; [ gerschtli ];
platforms = platforms.all;
};
}