python3Packages.celery: 4.4.4 -> 4.4.6

This commit is contained in:
Lancelot SIX 2020-07-15 15:13:44 +01:00 committed by Jon
parent af9aa5af7c
commit cfdf467458

View File

@ -1,14 +1,14 @@
{ lib, buildPythonPackage, fetchPypi, libredirect { lib, buildPythonPackage, fetchPypi, libredirect
, case, pytest, boto3, moto, kombu, billiard, pytz, anyjson, amqp, eventlet , case, pytest, boto3, moto, kombu, billiard, pytz, future, vine
}: }:
buildPythonPackage rec { buildPythonPackage rec {
pname = "celery"; pname = "celery";
version = "4.4.4"; version = "4.4.6";
src = fetchPypi { src = fetchPypi {
inherit pname version; inherit pname version;
sha256 = "0zk42fxznrhww0dxak9b6nkfqg02z49zr839k6ql7nk3him7n0y2"; sha256 = "1ni5c3qgbhb7871b3i55wc306m3g2n0qxp92g5gszdxiicjf8xzx";
}; };
postPatch = '' postPatch = ''
@ -33,7 +33,7 @@ buildPythonPackage rec {
''; '';
checkInputs = [ case pytest boto3 moto ]; checkInputs = [ case pytest boto3 moto ];
propagatedBuildInputs = [ kombu billiard pytz anyjson amqp eventlet ]; propagatedBuildInputs = [ kombu billiard pytz future vine ];
meta = with lib; { meta = with lib; {
homepage = "https://github.com/celery/celery/"; homepage = "https://github.com/celery/celery/";