504525a148
GitOrigin-RevId: bd645e8668ec6612439a9ee7e71f7eac4099d4f6
25 lines
542 B
Nix
25 lines
542 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "pdfkit";
|
|
version = "1.0.0";
|
|
format = "setuptools";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "992f821e1e18fc8a0e701ecae24b51a2d598296a180caee0a24c0af181da02a9";
|
|
};
|
|
|
|
# tests are not distributed
|
|
doCheck = false;
|
|
|
|
meta = with lib; {
|
|
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;
|
|
};
|
|
|
|
}
|