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