Merge pull request #146249 from honza/celery

python38Packages.celery: 5.1.2 -> 5.2.0
This commit is contained in:
Robert Scott 2021-12-05 12:30:08 +00:00 committed by GitHub
commit 7f9decd260
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -5,22 +5,13 @@
buildPythonPackage rec {
pname = "celery";
version = "5.1.2";
version = "5.2.0";
src = fetchPypi {
inherit pname version;
sha256 = "8d9a3de9162965e97f8e8cc584c67aad83b3f7a267584fa47701ed11c3e0d4b0";
sha256 = "4d858a8fe53c07a9f0cbf8cf1da28e8abe5464d0aba5713bf83908e74277734b";
};
# click is only used for the repl, in most cases this shouldn't impact
# downstream packages
postPatch = ''
substituteInPlace requirements/test.txt \
--replace "moto==1.3.7" moto
substituteInPlace requirements/default.txt \
--replace "click>=7.0,<8.0" click
'';
propagatedBuildInputs = [ billiard click click-didyoumean click-plugins click-repl kombu pytz vine ];
checkInputs = [ boto3 case moto pytest pytest-celery pytest-subtests pytest-timeout ];