nixpkgs/pkgs/development/python-modules/reportlab/default.nix
2017-11-11 09:16:59 +01:00

43 lines
878 B
Nix

{ lib
, buildPythonPackage
, fetchPypi
, freetype
, pillow
, pip
, glibcLocales
, python
, isPyPy
}:
let
ft = freetype.overrideAttrs (oldArgs: { dontDisableStatic = true; });
in buildPythonPackage rec {
pname = "reportlab";
version = "3.4.0";
src = fetchPypi {
inherit pname version;
sha256 = "5beaf35e59dfd5ebd814fdefd76908292e818c982bd7332b5d347dfd2f01c343";
};
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/;
};
}