Merge pull request #164843 from fabaff/fix-xhtml2pdf

python3Packages.xhtml2pdf: 0.2.5 -> 0.2.6
This commit is contained in:
Fabian Affolter 2022-03-19 11:46:12 +01:00 committed by GitHub
commit faa420de30
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,34 +1,53 @@
{ lib
, buildPythonPackage
, fetchPypi
, pillow
, html5lib
, pypdf2
, reportlab
, six
, python-bidi
, arabic-reshaper
, setuptools
, buildPythonPackage
, fetchFromGitHub
, html5lib
, pillow
, pypdf3
, pytestCheckHook
, python-bidi
, pythonOlder
, reportlab
, svglib
}:
buildPythonPackage rec {
pname = "xhtml2pdf";
version = "0.2.5";
version = "0.2.6";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = pname;
repo = pname;
rev = "v${version}";
hash = "sha256-EyIERvAC98LqPTMCdwWqTkm1RiMhikscL0tnMZUHIT8=";
};
propagatedBuildInputs = [
pillow html5lib pypdf2 reportlab six
setuptools python-bidi arabic-reshaper
arabic-reshaper
html5lib
pillow
pypdf3
python-bidi
reportlab
svglib
];
src = fetchPypi {
inherit pname version;
sha256 = "6797e974fac66f0efbe927c1539a2756ca4fe8777eaa5882bac132fc76b39421";
};
checkInputs = [
pytestCheckHook
];
pythonImportsCheck = [
"xhtml2pdf"
];
meta = with lib; {
description = "A PDF generator using HTML and CSS";
homepage = "https://github.com/xhtml2pdf/xhtml2pdf";
license = licenses.asl20;
maintainers = with maintainers; [ ];
};
}