nixpkgs/pkgs/development/python-modules/reportlab/default.nix
2020-11-05 15:47:08 -08:00

49 lines
1.1 KiB
Nix

{ buildPythonPackage
, fetchPypi
, freetype
, pillow
, glibcLocales
, python
, isPyPy
}:
let
ft = freetype.overrideAttrs (oldArgs: { dontDisableStatic = true; });
in buildPythonPackage rec {
pname = "reportlab";
version = "3.5.55";
src = fetchPypi {
inherit pname version;
sha256 = "4f307accda32c9f17015ed77c7424f904514e349dff063f78d2462d715963e53";
};
checkInputs = [ glibcLocales ];
buildInputs = [ ft pillow ];
postPatch = ''
# 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/";
};
}