2018-06-11 18:01:01 +00:00
|
|
|
{ stdenv, buildPythonPackage, fetchPypi, pillow, poppler_utils }:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "pdf2image";
|
2019-02-14 07:37:23 +00:00
|
|
|
version = "1.4.1";
|
2018-06-11 18:01:01 +00:00
|
|
|
|
2018-12-27 02:31:42 +00:00
|
|
|
propagatedBuildInputs = [ pillow poppler_utils ];
|
2018-06-11 18:01:01 +00:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2019-02-14 07:37:23 +00:00
|
|
|
sha256 = "c417149cb5ca52021203943e0eeb95db53580afebe728086e69671add4daeb08";
|
2018-06-11 18:01:01 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
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;
|
|
|
|
};
|
|
|
|
}
|