nixpkgs/pkgs/development/python-modules/xhtml2pdf/default.nix
freezeboy 12de08a7e2 python3Packages.xhtml2pdf: unbreak dependencies
Needing to add setuptools, python-bidi and arabic-reshaper
to make the package compile and run
2020-11-18 20:50:00 -08:00

35 lines
639 B
Nix

{ stdenv
, buildPythonPackage
, fetchPypi
, pillow
, html5lib
, pypdf2
, reportlab
, six
, python-bidi
, arabic-reshaper
, setuptools
}:
buildPythonPackage rec {
pname = "xhtml2pdf";
version = "0.2.5";
propagatedBuildInputs = [
pillow html5lib pypdf2 reportlab six
setuptools python-bidi arabic-reshaper
];
src = fetchPypi {
inherit pname version;
sha256 = "6797e974fac66f0efbe927c1539a2756ca4fe8777eaa5882bac132fc76b39421";
};
meta = with stdenv.lib; {
description = "A PDF generator using HTML and CSS";
homepage = "https://github.com/xhtml2pdf/xhtml2pdf";
license = licenses.asl20;
};
}