python.pkgs.reportlab: move expression

This commit is contained in:
Frederik Rietdijk
2017-11-11 09:15:21 +01:00
parent 1806559d05
commit e8be9f0437
2 changed files with 44 additions and 31 deletions

View File

@@ -0,0 +1,43 @@
{ lib
, buildPythonPackage
, fetchPypi
, freetype
, pillow
, pip
, glibcLocales
, python
, isPyPy
}:
let
ft = freetype.overrideAttrs (oldArgs: { dontDisableStatic = true; });
in buildPythonPackage rec {
pname = "reportlab";
version = "3.2.0";
src = fetchPypi {
inherit pname version;
sha256 = "14v212cq2w3p0j5xydfr8rav8c8qas1q845r0xj7fm6q5dk8grkj";
};
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/;
};
}