1{ stdenv
2, buildPythonPackage
3, fetchPypi
4}:
5
6buildPythonPackage rec {
7 pname = "pdfkit";
8 version = "0.6.1";
9
10 src = fetchPypi {
11 inherit pname version;
12 sha256 = "1lcc1njpjd2zadbljqsnkrvamschl6j099p4giz1jd6mg1ds67gg";
13 };
14
15 # tests are not distributed
16 doCheck = false;
17
18 meta = with stdenv.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}