2021-01-25 00:26:54 -08:00
|
|
|
{ lib
|
2019-05-20 10:12:45 -07:00
|
|
|
, buildPythonPackage
|
|
|
|
, fetchPypi
|
|
|
|
, pillow
|
|
|
|
, html5lib
|
|
|
|
, pypdf2
|
|
|
|
, reportlab
|
|
|
|
, six
|
2020-11-18 15:36:22 -08:00
|
|
|
, python-bidi
|
|
|
|
, arabic-reshaper
|
|
|
|
, setuptools
|
2019-05-20 10:12:45 -07:00
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "xhtml2pdf";
|
2020-10-25 02:06:58 -07:00
|
|
|
version = "0.2.5";
|
2019-05-20 10:12:45 -07:00
|
|
|
|
2020-11-18 15:36:22 -08:00
|
|
|
propagatedBuildInputs = [
|
|
|
|
pillow html5lib pypdf2 reportlab six
|
|
|
|
setuptools python-bidi arabic-reshaper
|
|
|
|
];
|
2019-05-20 10:12:45 -07:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2020-10-25 02:06:58 -07:00
|
|
|
sha256 = "6797e974fac66f0efbe927c1539a2756ca4fe8777eaa5882bac132fc76b39421";
|
2019-05-20 10:12:45 -07:00
|
|
|
};
|
|
|
|
|
2021-01-10 23:54:33 -08:00
|
|
|
meta = with lib; {
|
2019-05-20 10:12:45 -07:00
|
|
|
description = "A PDF generator using HTML and CSS";
|
2020-03-31 18:11:51 -07:00
|
|
|
homepage = "https://github.com/xhtml2pdf/xhtml2pdf";
|
2019-05-20 10:12:45 -07:00
|
|
|
license = licenses.asl20;
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|