pythonPackages.pillow: 3.3.1 -> 3.4.2

Solves vulnerabilities mentioned in
https://github.com/NixOS/nixpkgs/issues/20274
This commit is contained in:
Frederik Rietdijk 2016-11-09 16:23:05 +01:00
parent 9b06e35d33
commit 20d16f86cc

View File

@ -18647,11 +18647,12 @@ in {
pystringtemplate = callPackage ../development/python-modules/stringtemplate { };
pillow = buildPythonPackage rec {
name = "Pillow-3.3.1";
name = "Pillow-${version}";
version = "3.4.2";
src = pkgs.fetchurl {
url = "mirror://pypi/P/Pillow/${name}.tar.gz";
sha256 = "3491ca65d9fdba4db094ab3f8e17170425e7dd670e507921a665a1975d1b3df1";
sha256 = "0ee9975c05602e755ff5000232e0335ba30d507f6261922a658ee11b1cec36d1";
};
# Check is disabled because of assertion errors, see
@ -18686,18 +18687,14 @@ in {
meta = {
homepage = "https://python-pillow.github.io/";
description = "Fork of The Python Imaging Library (PIL)";
longDescription = ''
The Python Imaging Library (PIL) adds image processing
capabilities to your Python interpreter. This library
supports many file formats, and provides powerful image
processing and graphics capabilities.
'';
license = "http://www.pythonware.com/products/pil/license.htm";
maintainers = with maintainers; [ goibhniu prikhi ];
};
};