python3Packages.img2pdf: fix deps

This commit is contained in:
Jonathan Ringer 2020-08-16 21:39:53 -07:00
parent bdc797e100
commit e55ad63de1
No known key found for this signature in database
GPG Key ID: 5C841D3CFDFEC4E0
1 changed files with 2 additions and 1 deletions

View File

@ -1,4 +1,4 @@
{ lib, pillow, fetchPypi, buildPythonPackage, isPy27 }:
{ lib, pillow, fetchPypi, buildPythonPackage, isPy27, pikepdf }:
buildPythonPackage rec {
pname = "img2pdf";
@ -11,6 +11,7 @@ buildPythonPackage rec {
};
propagatedBuildInputs = [
pikepdf
pillow
];