mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-28 16:43:58 +00:00
102 lines
2.3 KiB
Nix
102 lines
2.3 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
buildPythonPackage,
|
|
cffi,
|
|
cssselect2,
|
|
fetchPypi,
|
|
flit-core,
|
|
fontconfig,
|
|
fonttools,
|
|
ghostscript,
|
|
glib,
|
|
harfbuzz,
|
|
html5lib,
|
|
pango,
|
|
pillow,
|
|
pydyf,
|
|
pyphen,
|
|
pytestCheckHook,
|
|
pythonOlder,
|
|
substituteAll,
|
|
tinycss2,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "weasyprint";
|
|
version = "62.3";
|
|
format = "pyproject";
|
|
|
|
disabled = pythonOlder "3.9";
|
|
|
|
src = fetchPypi {
|
|
inherit version;
|
|
pname = "weasyprint";
|
|
hash = "sha256-jYaA1zL3+g/LxYdpKlpcsJXDUlYnBmkY1uIDy/Qrf80=";
|
|
};
|
|
|
|
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}";
|
|
harfbuzz = "${harfbuzz.out}/lib/libharfbuzz${stdenv.hostPlatform.extensions.sharedLibrary}";
|
|
})
|
|
];
|
|
|
|
nativeBuildInputs = [ flit-core ];
|
|
|
|
propagatedBuildInputs = [
|
|
cffi
|
|
cssselect2
|
|
fonttools
|
|
html5lib
|
|
pillow
|
|
pydyf
|
|
pyphen
|
|
tinycss2
|
|
] ++ fonttools.optional-dependencies.woff;
|
|
|
|
nativeCheckInputs = [
|
|
pytestCheckHook
|
|
ghostscript
|
|
];
|
|
|
|
disabledTests = [
|
|
# needs the Ahem font (fails on macOS)
|
|
"test_font_stretch"
|
|
# sensitive to sandbox environments
|
|
"test_tab_size"
|
|
"test_tabulation_character"
|
|
"test_linear_gradients_5"
|
|
"test_linear_gradients_12"
|
|
];
|
|
|
|
FONTCONFIG_FILE = "${fontconfig.out}/etc/fonts/fonts.conf";
|
|
|
|
# Set env variable explicitly for Darwin, but allow overriding when invoking directly
|
|
makeWrapperArgs = [ "--set-default FONTCONFIG_FILE ${FONTCONFIG_FILE}" ];
|
|
|
|
postPatch = ''
|
|
substituteInPlace pyproject.toml \
|
|
--replace "--isort --flake8 --cov --no-cov-on-fail" ""
|
|
'';
|
|
|
|
preCheck = ''
|
|
# Fontconfig wants to create a cache.
|
|
export HOME=$TMPDIR
|
|
'';
|
|
|
|
pythonImportsCheck = [ "weasyprint" ];
|
|
|
|
meta = with lib; {
|
|
description = "Converts web documents to PDF";
|
|
mainProgram = "weasyprint";
|
|
homepage = "https://weasyprint.org/";
|
|
license = licenses.bsd3;
|
|
};
|
|
}
|