22 lines
616 B
Nix
22 lines
616 B
Nix
|
{ stdenv, buildPythonPackage, fetchPypi, pillow, poppler_utils }:
|
||
|
|
||
|
buildPythonPackage rec {
|
||
|
pname = "pdf2image";
|
||
|
version = "0.1.13";
|
||
|
|
||
|
buildInputs = [ pillow poppler_utils ];
|
||
|
|
||
|
src = fetchPypi {
|
||
|
inherit pname version;
|
||
|
sha256 = "784928038588059e00c7f97e5608047cb754b6ec8fd10e7551e7ad0f40d2cd56";
|
||
|
};
|
||
|
|
||
|
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;
|
||
|
};
|
||
|
}
|