9c6ee729d6
GitOrigin-RevId: 6cee3b5893090b0f5f0a06b4cf42ca4e60e5d222
42 lines
949 B
Nix
42 lines
949 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
, pillow
|
|
, poppler_utils
|
|
, pythonOlder
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "pdf2image";
|
|
version = "1.16.3";
|
|
format = "setuptools";
|
|
|
|
disabled = pythonOlder "3.7";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
hash = "sha256-dCCIEMLO9NnjR3abjmKlIwOYLdtPLf10THq0uUCuKH4=";
|
|
};
|
|
|
|
postPatch = ''
|
|
# Only replace first match in file
|
|
sed -i '0,/poppler_path=None/s||poppler_path="${poppler_utils}/bin"|' pdf2image/pdf2image.py
|
|
'';
|
|
|
|
propagatedBuildInputs = [
|
|
pillow
|
|
];
|
|
|
|
pythonImportsCheck = [
|
|
"pdf2image"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Module that wraps the pdftoppm utility to convert PDF to PIL Image object";
|
|
homepage = "https://github.com/Belval/pdf2image";
|
|
changelog = "https://github.com/Belval/pdf2image/releases/tag/v${version}";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ gerschtli ];
|
|
platforms = platforms.all;
|
|
};
|
|
}
|