python3Packages.xhtml2pdf: unbreak dependencies

Needing to add setuptools, python-bidi and arabic-reshaper
to make the package compile and run
This commit is contained in:
freezeboy 2020-11-19 00:36:22 +01:00 committed by Jonathan Ringer
parent 813255b816
commit 12de08a7e2

View file

@ -6,13 +6,19 @@
, pypdf2
, reportlab
, six
, python-bidi
, arabic-reshaper
, setuptools
}:
buildPythonPackage rec {
pname = "xhtml2pdf";
version = "0.2.5";
propagatedBuildInputs = [pillow html5lib pypdf2 reportlab six];
propagatedBuildInputs = [
pillow html5lib pypdf2 reportlab six
setuptools python-bidi arabic-reshaper
];
src = fetchPypi {
inherit pname version;