nixpkgs/pkgs/development/python-modules/celery/default.nix

36 lines
963 B
Nix
Raw Normal View History

2019-09-13 20:03:18 +00:00
{ lib, buildPythonPackage, fetchPypi, libredirect
, case, pytest, boto3, moto, kombu, billiard, pytz, anyjson, amqp, eventlet
2018-03-28 18:55:39 +00:00
}:
buildPythonPackage rec {
2018-01-09 10:34:35 +00:00
pname = "celery";
2019-03-03 23:20:00 +00:00
version = "4.3.0";
2018-01-09 10:34:35 +00:00
src = fetchPypi {
inherit pname version;
2019-03-03 23:20:00 +00:00
sha256 = "4c4532aa683f170f40bd76f928b70bc06ff171a959e06e71bf35f2f9d6031ef9";
2018-01-09 10:34:35 +00:00
};
2019-03-03 23:20:00 +00:00
postPatch = ''
substituteInPlace requirements/test.txt \
2019-05-12 18:31:45 +00:00
--replace "moto==1.3.7" moto \
2019-03-03 23:20:00 +00:00
--replace "pytest>=4.3.1,<4.4.0" pytest
'';
2019-09-13 20:03:18 +00:00
# ignore test that's incompatible with pytest5
# test_eventlet touches network
checkPhase = ''
pytest -k 'not restore_current_app_fallback' \
--ignore=t/unit/concurrency/test_eventlet.py
2018-01-09 10:34:35 +00:00
'';
checkInputs = [ case pytest boto3 moto ];
2018-01-09 10:34:35 +00:00
propagatedBuildInputs = [ kombu billiard pytz anyjson amqp eventlet ];
2019-09-13 20:03:18 +00:00
meta = with lib; {
2018-01-09 10:34:35 +00:00
homepage = https://github.com/celery/celery/;
description = "Distributed task queue";
license = licenses.bsd3;
};
}