1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00

pythonPackages.pdfkit: init at 0.5.0

This commit is contained in:
Kevin Marsh 2016-06-02 13:21:59 +01:00 committed by Frederik Rietdijk
parent 47122e18bd
commit cedfeda2a1

View file

@ -16220,6 +16220,25 @@ in modules // {
};
};
pdfkit = buildPythonPackage rec {
name = "pdfkit-${version}";
version = "0.5.0";
src = pkgs.fetchurl {
url = "mirror://pypi/p/pdfkit/${name}.zip";
sha256 = "1p1m6gp51ql3wzjs2iwds8sc3hg1i48yysii9inrky6qc3s6q5vf";
};
buildInputs = with self; [ ];
# tests are not distributed
doCheck = false;
meta = {
homepage = https://pypi.python.org/pypi/pdfkit;
description = "Wkhtmltopdf python wrapper to convert html to pdf using the webkit rendering engine and qt";
license = licenses.mit;
};
};
pg8000 = buildPythonPackage rec {
name = "pg8000-1.10.1";