mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-15 13:37:21 +03:00
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 =
|
||||
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/;
|
||||
};
|
||||
};
|
||||
reportlab = callPackage ../development/python-modules/reportlab { };
|
||||
|
||||
requests2 = throw "requests2 has been deprecated. Use requests instead.";
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user