pythonPackages.celery: 4.4.0 -> 4.4.2

This commit is contained in:
Jonathan Ringer 2020-03-18 12:46:23 -07:00 committed by Jon
parent b549a006fe
commit 0c1118b7e0

View File

@ -4,11 +4,11 @@
buildPythonPackage rec { buildPythonPackage rec {
pname = "celery"; pname = "celery";
version = "4.4.0"; version = "4.4.2";
src = fetchPypi { src = fetchPypi {
inherit pname version; inherit pname version;
sha256 = "d3363bb5df72d74420986a435449f3c3979285941dff57d5d97ecba352a0e3e2"; sha256 = "0ps1c6ill7q0m5kzb87hisgshdk3kzpa6cvcjch1d1wa07whp2hh";
}; };
postPatch = '' postPatch = ''
@ -21,7 +21,7 @@ buildPythonPackage rec {
# test_eventlet touches network # test_eventlet touches network
# test_mongodb requires pymongo # test_mongodb requires pymongo
checkPhase = '' checkPhase = ''
pytest -k 'not restore_current_app_fallback and not msgpack' \ pytest -k 'not restore_current_app_fallback and not msgpack and not on_apply' \
--ignore=t/unit/concurrency/test_eventlet.py \ --ignore=t/unit/concurrency/test_eventlet.py \
--ignore=t/unit/backends/test_mongodb.py --ignore=t/unit/backends/test_mongodb.py
''; '';