nixpkgs/pkgs/development/python-modules/xhtml2pdf/default.nix

35 lines
629 B
Nix
Raw Normal View History

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