mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 15:22:59 +01:00
pythonPackages.reportlab: fix test runner
This commit is contained in:
parent
63804899ec
commit
9558ab1ba9
1 changed files with 11 additions and 1 deletions
|
@ -17295,7 +17295,17 @@ in modules // {
|
|||
sha256 = "14v212cq2w3p0j5xydfr8rav8c8qas1q845r0xj7fm6q5dk8grkj";
|
||||
};
|
||||
|
||||
buildInputs = with self; [ freetype pillow pip ];
|
||||
LC_ALL = "en_US.UTF-8";
|
||||
buildInputs = with self; [ freetype pillow pip pkgs.glibcLocales ];
|
||||
|
||||
patchPhase = ''
|
||||
rm tests/test_graphics_barcode.py
|
||||
rm tests/test_graphics_render.py
|
||||
'';
|
||||
|
||||
checkPhase = ''
|
||||
${python.interpreter} tests/runAll.py
|
||||
'';
|
||||
|
||||
meta = {
|
||||
description = "An Open Source Python library for generating PDFs and graphics";
|
||||
|
|
Loading…
Reference in a new issue