mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-21 05:04:00 +00:00
a4fcb461fe
* reportlab: Move Pillow into propagatedBuildInputs Pillow needs to be available at runtime, as it is a Python package. Co-authored-by: panicgh <79252025+panicgh@users.noreply.github.com>
58 lines
1.3 KiB
Nix
58 lines
1.3 KiB
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
, freetype
|
|
, pillow
|
|
, glibcLocales
|
|
, python
|
|
, isPyPy
|
|
}:
|
|
|
|
let
|
|
ft = freetype.overrideAttrs (oldArgs: { dontDisableStatic = true; });
|
|
in buildPythonPackage rec {
|
|
pname = "reportlab";
|
|
version = "3.6.12";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
hash = "sha256-sTzr9OOXu6FFQrzQIzOLb/LBUaOhKqvKie7L+XLLNho=";
|
|
};
|
|
|
|
patches = [
|
|
./darwin-m1-compat.patch
|
|
];
|
|
|
|
nativeCheckInputs = [ glibcLocales ];
|
|
|
|
buildInputs = [ ft ];
|
|
propagatedBuildInputs = [ pillow ];
|
|
|
|
postPatch = ''
|
|
substituteInPlace setup.py \
|
|
--replace "mif = findFile(d,'ft2build.h')" "mif = findFile('${lib.getDev ft}','ft2build.h')"
|
|
|
|
# Remove all the test files that require access to the internet to pass.
|
|
rm tests/test_lib_utils.py
|
|
rm tests/test_platypus_general.py
|
|
rm tests/test_platypus_images.py
|
|
|
|
# Remove the tests that require Vera fonts installed
|
|
rm tests/test_graphics_render.py
|
|
rm tests/test_graphics_charts.py
|
|
'';
|
|
|
|
checkPhase = ''
|
|
cd tests
|
|
LC_ALL="en_US.UTF-8" ${python.interpreter} runAll.py
|
|
'';
|
|
|
|
# See https://bitbucket.org/pypy/compatibility/wiki/reportlab%20toolkit
|
|
disabled = isPyPy;
|
|
|
|
meta = {
|
|
description = "An Open Source Python library for generating PDFs and graphics";
|
|
homepage = "http://www.reportlab.com/";
|
|
};
|
|
}
|