mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-26 08:53:21 +00:00
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:
parent
813255b816
commit
12de08a7e2
@ -6,13 +6,19 @@
|
|||||||
, pypdf2
|
, pypdf2
|
||||||
, reportlab
|
, reportlab
|
||||||
, six
|
, six
|
||||||
|
, python-bidi
|
||||||
|
, arabic-reshaper
|
||||||
|
, setuptools
|
||||||
}:
|
}:
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "xhtml2pdf";
|
pname = "xhtml2pdf";
|
||||||
version = "0.2.5";
|
version = "0.2.5";
|
||||||
|
|
||||||
propagatedBuildInputs = [pillow html5lib pypdf2 reportlab six];
|
propagatedBuildInputs = [
|
||||||
|
pillow html5lib pypdf2 reportlab six
|
||||||
|
setuptools python-bidi arabic-reshaper
|
||||||
|
];
|
||||||
|
|
||||||
src = fetchPypi {
|
src = fetchPypi {
|
||||||
inherit pname version;
|
inherit pname version;
|
||||||
|
Loading…
Reference in New Issue
Block a user