Make xhtml2pdf its own package in python-packages

xhtml2pdf now uses the main package html5lib with just an override to
pull the correct version number.
This commit is contained in:
Adam Washington
2018-03-21 13:46:17 +00:00
parent 609374523c
commit 01c1385dec
5 changed files with 35 additions and 41 deletions
@@ -1,10 +1,5 @@
{lib, fetchgit, gcc, python}:
let
html5 = import ./myHtml5.nix {inherit python;};
xhtml2pdf = import ./xhtml2pdf.nix {inherit python html5;};
in
python.pkgs.buildPythonApplication rec {
name = "sasview-${version}";
version = "4.1.2";
@@ -13,7 +8,6 @@ python.pkgs.buildPythonApplication rec {
bumps
gcc
h5py
html5
libxslt
lxml
matplotlib
@@ -1,20 +0,0 @@
{python}:
python.pkgs.buildPythonPackage (rec{
buildInputs = with python.pkgs; [ flake8 pytest pytest-expect mock ];
propagatedBuildInputs = with python.pkgs; [
six webencodings
];
checkPhase = ''
py.test
'';
pname = "html5lib";
name = "html5lib-${version}";
version = "1.0b10";
src = python.pkgs.fetchPypi {
pname = "html5lib";
inherit version;
sha256 = "1yd068a5c00wd0ajq0hqimv7fd82lhrw0w3s01vbhy9bbd6xapqd";
};
})
@@ -1,15 +0,0 @@
{python, html5}:
python.pkgs.buildPythonPackage rec {
name = "${pname}-${version}";
pname = "xhtml2pdf";
version = "0.2.1";
buildInputs = [html5];
propagatedBuildInputs = with python.pkgs; [httplib2 pillow pypdf2 reportlab html5];
src = python.pkgs.fetchPypi {
inherit pname version;
sha256 = "1n9r8zdk9gc2x539fq60bhszmd421ipj8g78zmsn3njvma1az9k1";
};
}