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