python.pkgs.celery: 4.2.1 -> 4.3.0rc1

Using a pre-release because it currently does not build due to
updated dependencies.
This commit is contained in:
Robert Schütz 2019-02-20 17:31:19 +01:00
parent c1b7deab9f
commit 9d2ea84f55

View File

@ -1,39 +1,16 @@
{ stdenv, buildPythonPackage, fetchPypi, isPy37, fetchpatch, iana-etc, libredirect, { stdenv, buildPythonPackage, fetchPypi, isPy37, fetchpatch, iana-etc, libredirect
pytest, case, kombu, billiard, pytz, anyjson, amqp, eventlet , case, pytest, boto3, moto, kombu, billiard, pytz, anyjson, amqp, eventlet
}: }:
buildPythonPackage rec { buildPythonPackage rec {
pname = "celery"; pname = "celery";
version = "4.2.1"; version = "4.3.0rc1";
src = fetchPypi { src = fetchPypi {
inherit pname version; inherit pname version;
sha256 = "0y66rz7z8dfcgs3s0qxmdddlaq57bzbgxgfz896nbp14grkv9nkp"; sha256 = "1jmg47l0b3bnwmg44x48bwziwyk6xqs1y5plvr99a3ikz1l807yf";
}; };
# See https://github.com/celery/celery/issues/4500
# TODO: Remove once upgraded to 4.3
disabled = isPy37;
patches = [
# Skip test_RedisBackend.test_timeouts_in_url_coerced
# See https://github.com/celery/celery/pull/4847
(fetchpatch {
url = https://github.com/celery/celery/commit/b2668607c909c61becd151905b4525190c19ff4a.patch;
sha256 = "11w0z2ycyh8kccj4y69zb7bxppiipcwwigg6jn1q9yrcsvz170jq";
})
# Allow usage of a newer pytest version
# See https://github.com/celery/celery/pull/4912
(fetchpatch {
url = https://github.com/celery/celery/commit/16f56fe6f84cac9f92affac3ad06a1f168a19798.patch;
sha256 = "0vz68rl32m34k51nhs898jcfdbj5m7cszzxx0w0j3j1fhn1wq594";
})
];
postPatch = ''
substituteInPlace requirements/test.txt --replace ",<3.9" ""
'';
# make /etc/protocols accessible to fix socket.getprotobyname('tcp') in sandbox # make /etc/protocols accessible to fix socket.getprotobyname('tcp') in sandbox
preCheck = stdenv.lib.optionalString stdenv.isLinux '' preCheck = stdenv.lib.optionalString stdenv.isLinux ''
export NIX_REDIRECTS=/etc/protocols=${iana-etc}/etc/protocols \ export NIX_REDIRECTS=/etc/protocols=${iana-etc}/etc/protocols \
@ -43,7 +20,7 @@ buildPythonPackage rec {
unset NIX_REDIRECTS LD_PRELOAD unset NIX_REDIRECTS LD_PRELOAD
''; '';
checkInputs = [ pytest case ]; checkInputs = [ case pytest boto3 moto ];
propagatedBuildInputs = [ kombu billiard pytz anyjson amqp eventlet ]; propagatedBuildInputs = [ kombu billiard pytz anyjson amqp eventlet ];
meta = with stdenv.lib; { meta = with stdenv.lib; {