From c8c0ee349352ff779e5153dca5765ac9ebaae2f4 Mon Sep 17 00:00:00 2001 From: desiderius Date: Tue, 27 Oct 2015 07:48:45 +0100 Subject: [PATCH] pythonPackages.reportlab: 3.1.8 -> 3.2.0 - enables unit tests, - adds a dependency to Pillow. --- pkgs/top-level/python-packages.nix | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 2b463bf5a6e..e6968349b2b 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -12937,17 +12937,14 @@ let reportlab = let freetype = overrideDerivation pkgs.freetype (args: { configureFlags = "--enable-static --enable-shared"; }); in buildPythonPackage rec { - name = "reportlab-3.1.8"; + name = "reportlab-3.2.0"; src = pkgs.fetchurl { url = "http://pypi.python.org/packages/source/r/reportlab/${name}.tar.gz"; - md5 = "820a9fda647078503597b85cdba7ed7f"; + sha256 = "14v212cq2w3p0j5xydfr8rav8c8qas1q845r0xj7fm6q5dk8grkj"; }; - buildInputs = with self; [freetype]; - - # error: invalid command 'test' - doCheck = false; + buildInputs = with self; [ freetype pillow pip ]; meta = { description = "An Open Source Python library for generating PDFs and graphics";