3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/development/python-modules/reportlab/default.nix

41 lines
866 B
Nix
Raw Normal View History

{ buildPythonPackage
2017-11-11 08:15:21 +00:00
, fetchPypi
, freetype
, pillow
, glibcLocales
, python
, isPyPy
}:
let
ft = freetype.overrideAttrs (oldArgs: { dontDisableStatic = true; });
in buildPythonPackage rec {
pname = "reportlab";
2018-07-22 11:19:50 +01:00
version = "3.5.1";
2017-11-11 08:15:21 +00:00
src = fetchPypi {
inherit pname version;
2018-07-22 11:19:50 +01:00
sha256 = "5345494df4f1563fdab5597f7f543eae44c0aeecce05bd4d93c199f34c4b8c0c";
2017-11-11 08:15:21 +00:00
};
checkInputs = [ glibcLocales ];
buildInputs = [ ft pillow ];
postPatch = ''
rm tests/test_graphics_barcode.py
rm tests/test_graphics_render.py
'';
checkPhase = ''
LC_ALL="en_US.UTF-8" ${python.interpreter} tests/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/;
};
}