python.pkgs.celery: does not support Python 3.7 yet

This commit is contained in:
Robert Schütz 2019-01-18 02:36:53 +01:00 committed by Frederik Rietdijk
parent fae1f7afc1
commit 932f0baec2
1 changed files with 5 additions and 1 deletions

View File

@ -1,4 +1,4 @@
{ stdenv, buildPythonPackage, fetchPypi, fetchpatch, iana-etc, libredirect,
{ stdenv, buildPythonPackage, fetchPypi, isPy37, fetchpatch, iana-etc, libredirect,
pytest, case, kombu, billiard, pytz, anyjson, amqp, eventlet
}:
@ -11,6 +11,10 @@ buildPythonPackage rec {
sha256 = "0y66rz7z8dfcgs3s0qxmdddlaq57bzbgxgfz896nbp14grkv9nkp";
};
# 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