mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-18 07:46:09 +01:00
python3Packages.celery: 4.4.4 -> 4.4.6
This commit is contained in:
parent
af9aa5af7c
commit
cfdf467458
1 changed files with 4 additions and 4 deletions
|
@ -1,14 +1,14 @@
|
|||
{ 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 {
|
||||
pname = "celery";
|
||||
version = "4.4.4";
|
||||
version = "4.4.6";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "0zk42fxznrhww0dxak9b6nkfqg02z49zr839k6ql7nk3him7n0y2";
|
||||
sha256 = "1ni5c3qgbhb7871b3i55wc306m3g2n0qxp92g5gszdxiicjf8xzx";
|
||||
};
|
||||
|
||||
postPatch = ''
|
||||
|
@ -33,7 +33,7 @@ buildPythonPackage rec {
|
|||
'';
|
||||
|
||||
checkInputs = [ case pytest boto3 moto ];
|
||||
propagatedBuildInputs = [ kombu billiard pytz anyjson amqp eventlet ];
|
||||
propagatedBuildInputs = [ kombu billiard pytz future vine ];
|
||||
|
||||
meta = with lib; {
|
||||
homepage = "https://github.com/celery/celery/";
|
||||
|
|
Loading…
Reference in a new issue