2019-03-11 13:27:40 +01:00
|
|
|
{ buildPythonPackage,
|
|
|
|
fetchPypi,
|
|
|
|
cairosvg,
|
|
|
|
pyphen,
|
|
|
|
cffi,
|
|
|
|
cssselect,
|
|
|
|
lxml,
|
|
|
|
html5lib,
|
|
|
|
tinycss,
|
|
|
|
pygobject2,
|
|
|
|
glib,
|
|
|
|
pango,
|
|
|
|
fontconfig,
|
|
|
|
stdenv,
|
|
|
|
pytest,
|
|
|
|
pytestrunner,
|
|
|
|
pytest-isort,
|
|
|
|
pytest-flake8,
|
|
|
|
pytestcov,
|
|
|
|
isPy3k,
|
|
|
|
substituteAll
|
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "weasyprint";
|
2019-09-25 09:08:06 +02:00
|
|
|
version = "50";
|
2019-03-11 13:27:40 +01:00
|
|
|
disabled = !isPy3k;
|
|
|
|
|
2019-09-25 11:44:09 +02:00
|
|
|
# excluded test needs the Ahem font
|
2019-09-25 09:08:06 +02:00
|
|
|
checkPhase = ''
|
|
|
|
runHook preCheck
|
2019-09-25 11:44:09 +02:00
|
|
|
pytest -k 'not test_font_stretch'
|
2019-09-25 09:08:06 +02:00
|
|
|
runHook postCheck
|
|
|
|
'';
|
2019-03-11 13:27:40 +01:00
|
|
|
|
|
|
|
# ignore failing flake8-test
|
|
|
|
prePatch = ''
|
|
|
|
substituteInPlace setup.cfg \
|
|
|
|
--replace '[tool:pytest]' '[tool:pytest]\nflake8-ignore = E501'
|
|
|
|
'';
|
|
|
|
|
|
|
|
checkInputs = [ pytest pytestrunner pytest-isort pytest-flake8 pytestcov ];
|
|
|
|
|
|
|
|
FONTCONFIG_FILE = "${fontconfig.out}/etc/fonts/fonts.conf";
|
|
|
|
|
|
|
|
propagatedBuildInputs = [ cairosvg pyphen cffi cssselect lxml html5lib tinycss pygobject2 ];
|
|
|
|
|
|
|
|
patches = [
|
|
|
|
(substituteAll {
|
|
|
|
src = ./library-paths.patch;
|
|
|
|
fontconfig = "${fontconfig.lib}/lib/libfontconfig${stdenv.hostPlatform.extensions.sharedLibrary}";
|
|
|
|
pangoft2 = "${pango.out}/lib/libpangoft2-1.0${stdenv.hostPlatform.extensions.sharedLibrary}";
|
|
|
|
gobject = "${glib.out}/lib/libgobject-2.0${stdenv.hostPlatform.extensions.sharedLibrary}";
|
|
|
|
pango = "${pango.out}/lib/libpango-1.0${stdenv.hostPlatform.extensions.sharedLibrary}";
|
|
|
|
pangocairo = "${pango.out}/lib/libpangocairo-1.0${stdenv.hostPlatform.extensions.sharedLibrary}";
|
|
|
|
})
|
|
|
|
];
|
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit version;
|
|
|
|
pname = "WeasyPrint";
|
2019-09-25 09:08:06 +02:00
|
|
|
sha256 = "0invs96zvmcr6wh5klj52jrcnr9qg150v9wpmbhcsf3vv1d1hbcw";
|
2019-03-11 13:27:40 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
homepage = https://weasyprint.org/;
|
|
|
|
description = "Converts web documents to PDF";
|
|
|
|
license = licenses.bsd3;
|
|
|
|
maintainers = with maintainers; [ elohmeier ];
|
|
|
|
};
|
|
|
|
}
|