blob: ef0a575789e75195038239dd549b60f784926c65 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
|
{ lib
, buildPythonPackage
, chardet
, fetchPypi
, freetype
, pillow
, setuptools
, glibcLocales
, python
, isPyPy
}:
let
ft = freetype.overrideAttrs (oldArgs: { dontDisableStatic = true; });
in buildPythonPackage rec {
pname = "reportlab";
version = "4.1.0";
pyproject = true;
# See https://bitbucket.org/pypy/compatibility/wiki/reportlab%20toolkit
disabled = isPyPy;
src = fetchPypi {
inherit pname version;
hash = "sha256-Opn69BJpEVnAaLP/AcFTB84v0s9rhgGZQ0h04AIECoQ=";
};
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
'';
nativeBuildInputs = [
setuptools
];
buildInputs = [
ft
];
propagatedBuildInputs = [
chardet
pillow
];
nativeCheckInputs = [
glibcLocales
];
checkPhase = ''
runHook preCheck
pushd tests
LC_ALL="en_US.UTF-8" ${python.interpreter} runAll.py
popd
runHook postCheck
'';
meta = with lib; {
description = "An Open Source Python library for generating PDFs and graphics";
homepage = "https://www.reportlab.com/";
license = licenses.bsd3;
maintainers = with maintainers; [ ];
};
}
|