nixpkgs/pkgs/development/python-modules/reportlab/default.nix

48 lines
1.1 KiB
Nix
Raw Normal View History

{ buildPythonPackage
2017-11-11 09:15:21 +01:00
, fetchPypi
, freetype
, pillow
, glibcLocales
, python
, isPyPy
}:
let
ft = freetype.overrideAttrs (oldArgs: { dontDisableStatic = true; });
in buildPythonPackage rec {
pname = "reportlab";
2019-05-30 08:49:52 +02:00
version = "3.5.21";
2017-11-11 09:15:21 +01:00
src = fetchPypi {
inherit pname version;
2019-05-30 08:49:52 +02:00
sha256 = "08e6e63a4502d3a00062ba9ff9669f95577fbdb1a5f8c6cdb1230c5ee295273a";
2017-11-11 09:15:21 +01:00
};
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
2017-11-11 09:15:21 +01:00
rm tests/test_graphics_render.py
'';
checkPhase = ''
cd tests
LC_ALL="en_US.UTF-8" ${python.interpreter} runAll.py
2017-11-11 09:15:21 +01:00
'';
# 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/;
};
}