python.pkgs.reportlab: move expression
This commit is contained in:
parent
1806559d05
commit
e8be9f0437
43
pkgs/development/python-modules/reportlab/default.nix
Normal file
43
pkgs/development/python-modules/reportlab/default.nix
Normal 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/;
|
||||||
|
};
|
||||||
|
}
|
@ -17031,37 +17031,7 @@ in {
|
|||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
reportlab = callPackage ../development/python-modules/reportlab { };
|
||||||
reportlab =
|
|
||||||
let freetype = overrideDerivation pkgs.freetype (args: { dontDisableStatic = true; });
|
|
||||||
in buildPythonPackage rec {
|
|
||||||
name = "reportlab-3.2.0";
|
|
||||||
|
|
||||||
src = pkgs.fetchurl {
|
|
||||||
url = "mirror://pypi/r/reportlab/${name}.tar.gz";
|
|
||||||
sha256 = "14v212cq2w3p0j5xydfr8rav8c8qas1q845r0xj7fm6q5dk8grkj";
|
|
||||||
};
|
|
||||||
|
|
||||||
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
|
|
||||||
'';
|
|
||||||
|
|
||||||
# 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/;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
requests2 = throw "requests2 has been deprecated. Use requests instead.";
|
requests2 = throw "requests2 has been deprecated. Use requests instead.";
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user