Merge pull request #231233 from r-ryantm/auto-update/python310Packages.xhtml2pdf

python310Packages.xhtml2pdf: 0.2.9 -> 0.2.11
This commit is contained in:
Nick Cao 2023-05-11 23:25:56 +08:00 committed by GitHub
commit 41ce7afde5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -15,18 +15,16 @@
buildPythonPackage rec {
pname = "xhtml2pdf";
version = "0.2.9";
version = "0.2.11";
format = "setuptools";
disabled = pythonOlder "3.7";
# Tests are only available on GitHub
src = fetchFromGitHub {
owner = pname;
repo = pname;
# Currently it is not possible to fetch from version as there is a branch with the same name
rev = "refs/tags/${version}";
hash = "sha256-MrzAsa0AZX3+0LN/Can3QBoPBRxb0a/F2jLBd8rD5H4=";
rev = "refs/tags/v${version}";
hash = "sha256-L/HCw+O8bidtE5nDdO+cLS54m64dlJL+9Gjcye5gM+w=";
};
propagatedBuildInputs = [
@ -51,6 +49,7 @@ buildPythonPackage rec {
meta = with lib; {
description = "A PDF generator using HTML and CSS";
homepage = "https://github.com/xhtml2pdf/xhtml2pdf";
changelog = "https://github.com/xhtml2pdf/xhtml2pdf/releases/tag/v${version}";
license = licenses.asl20;
maintainers = with maintainers; [ ];
};