python thumbor: 4.0.4 -> 5.2.1
This commit is contained in:
parent
75715000db
commit
f02e32d6c6
@ -18075,19 +18075,24 @@ let
|
|||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
thumbor = self.buildPythonPackage rec {
|
thumbor = buildPythonPackage rec {
|
||||||
name = "thumbor-4.0.4";
|
name = "thumbor-${version}";
|
||||||
|
version = "5.2.1";
|
||||||
|
|
||||||
disabled = ! isPy27;
|
disabled = ! isPy27;
|
||||||
|
|
||||||
|
buildInputs = with self; [ statsd nose ];
|
||||||
|
|
||||||
propagatedBuildInputs = with self; [
|
propagatedBuildInputs = with self; [
|
||||||
# Remove pythonPackages.tornado 3.x once thumbor is updated to 5.x
|
tornado
|
||||||
tornado_3
|
|
||||||
pycrypto
|
pycrypto
|
||||||
pycurl
|
pycurl
|
||||||
pillow
|
pillow
|
||||||
derpconf
|
derpconf
|
||||||
python_magic
|
python_magic
|
||||||
thumborPexif
|
# thumborPexif
|
||||||
|
pexif
|
||||||
|
libthumbor
|
||||||
(pkgs.opencv.override {
|
(pkgs.opencv.override {
|
||||||
gtk = null;
|
gtk = null;
|
||||||
glib = null;
|
glib = null;
|
||||||
@ -18095,11 +18100,11 @@ let
|
|||||||
gstreamer = null;
|
gstreamer = null;
|
||||||
ffmpeg = null;
|
ffmpeg = null;
|
||||||
})
|
})
|
||||||
];
|
] ++ optionals (!isPy3k) [ futures ];
|
||||||
|
|
||||||
src = pkgs.fetchurl {
|
src = pkgs.fetchurl {
|
||||||
url = "https://pypi.python.org/packages/source/t/thumbor/${name}.tar.gz";
|
url = "https://pypi.python.org/packages/source/t/thumbor/${name}.tar.gz";
|
||||||
md5 = "cf639a1cc57ee287b299ace450444408";
|
sha256 = "57b0d7e261e792b2e2c53a79c3d8c722964003d1828331995dc3491dc67db7d8";
|
||||||
};
|
};
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user