summary refs log blame commit diff
path: root/pkgs/development/python-modules/pdfkit/default.nix
blob: 0d6edcbd3f48f5f80e8960e8f90398f0b0c32f4c (plain) (tree)
1
2
3
4
5
6
7
8






                        
                    


                          
                                                                    











                                                                                                               
{ stdenv
, buildPythonPackage
, fetchPypi
}:

buildPythonPackage rec {
  pname = "pdfkit";
  version = "0.6.1";

  src = fetchPypi {
    inherit pname version;
    sha256 = "1lcc1njpjd2zadbljqsnkrvamschl6j099p4giz1jd6mg1ds67gg";
  };

  # tests are not distributed
  doCheck = false;

  meta = with stdenv.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;
  };

}