pythonPackages.thumbor: 6.5.1 -> 6.5.2

6.5.2 allows Pillow==5.2.0 (see https://github.com/thumbor/thumbor/releases/tag/6.5.2).

See https://hydra.nixos.org/build/79403232 for further reference.

+4 -4
+4 -4
pkgs/development/python-modules/thumbor/default.nix
··· 1 - { buildPythonPackage, stdenv, tornado, pycrypto, pycurl, pytz 1 + { buildPythonPackage, tornado, pycrypto, pycurl, pytz 2 2 , pillow, derpconf, python_magic, pexif, libthumbor, opencv, webcolors 3 3 , piexif, futures, statsd, thumborPexif, fetchPypi, isPy3k, lib 4 4 }: 5 5 6 6 buildPythonPackage rec { 7 7 pname = "thumbor"; 8 - version = "6.5.1"; 8 + version = "6.5.2"; 9 9 10 10 disabled = isPy3k; # see https://github.com/thumbor/thumbor/issues/1004 11 11 12 12 src = fetchPypi { 13 13 inherit pname version; 14 - sha256 = "0yalqwpxb6m0dz2qfnyv1pqqd5dd020wl7hc0n0bvsvxg1ib9if0"; 14 + sha256 = "1icfnzwzi5lvnh576n7v3r819jaw15ph9ja2w3fwg5z9qs40xvl8"; 15 15 }; 16 16 17 17 postPatch = '' ··· 40 40 # for further reference. 41 41 doCheck = false; 42 42 43 - meta = with stdenv.lib; { 43 + meta = with lib; { 44 44 description = "A smart imaging service"; 45 45 homepage = https://github.com/thumbor/thumbor/wiki; 46 46 license = licenses.mit;