1{
2 lib,
3 buildPythonPackage,
4 fetchPypi,
5}:
6
7buildPythonPackage rec {
8 pname = "pdfkit";
9 version = "1.0.0";
10 format = "setuptools";
11
12 src = fetchPypi {
13 inherit pname version;
14 sha256 = "992f821e1e18fc8a0e701ecae24b51a2d598296a180caee0a24c0af181da02a9";
15 };
16
17 # tests are not distributed
18 doCheck = false;
19
20 meta = with lib; {
21 homepage = "https://pypi.python.org/pypi/pdfkit";
22 description = "Wkhtmltopdf python wrapper to convert html to pdf using the webkit rendering engine and qt";
23 license = licenses.mit;
24 };
25}