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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

113 lines
2.2 KiB
Nix
Raw Normal View History

{ stdenv
, lib
, billiard
, boto3
, buildPythonPackage
2022-01-13 14:35:02 +00:00
, case
, click
, click-didyoumean
, click-plugins
, click-repl
2022-01-13 13:59:50 +00:00
, dnspython
, fetchPypi
, fetchpatch
, kombu
, moto
, pymongo
, pytest-celery
, pytest-subtests
, pytest-timeout
, pytestCheckHook
, pythonOlder
, pytz
, vine
, nixosTests
2018-03-28 18:55:39 +00:00
}:
buildPythonPackage rec {
2018-01-09 10:34:35 +00:00
pname = "celery";
version = "5.2.7";
format = "setuptools";
disabled = pythonOlder "3.7";
2018-01-09 10:34:35 +00:00
src = fetchPypi {
inherit pname version;
hash = "sha256-+vvYKTTTD4oAT4Ho96Bi4xQToj1ES+juMyZVORWVjG0=";
2018-01-09 10:34:35 +00:00
};
patches = [
(fetchpatch {
name = "billiard-4.0-compat.patch";
url = "https://github.com/celery/celery/commit/b260860988469ef8ad74f2d4225839c2fa91d590.patch";
hash = "sha256-NWB/UB0fE7A/vgMRYz6QGmqLmyN1ninAMyL4V2tpzto=";
})
(fetchpatch {
name = "billiard-4.1-compat.patch";
url = "https://github.com/celery/celery/pull/7781/commits/879af6341974c3778077d8212d78f093b2d77a4f.patch";
hash = "sha256-+m8/YkeAPPjwm0WF7dw5XZzf7MImVBLXT0/FS+fk0FE=";
})
];
postPatch = ''
substituteInPlace requirements/default.txt \
--replace "billiard>=3.6.4.0,<4.0" "billiard>=3.6.4.0"
'';
propagatedBuildInputs = [
billiard
click
click-didyoumean
click-plugins
click-repl
kombu
pytz
vine
];
nativeCheckInputs = [
boto3
2022-01-13 14:35:02 +00:00
case
2022-01-13 13:59:50 +00:00
dnspython
moto
pymongo
pytest-celery
pytest-subtests
pytest-timeout
pytestCheckHook
];
disabledTestPaths = [
# test_eventlet touches network
"t/unit/concurrency/test_eventlet.py"
# test_multi tries to create directories under /var
"t/unit/bin/test_multi.py"
"t/unit/apps/test_multi.py"
];
2020-12-07 10:52:35 +00:00
disabledTests = [
"msgpack"
"test_check_privileges_no_fchown"
] ++ lib.optionals stdenv.isDarwin [
# too many open files on hydra
"test_cleanup"
"test_with_autoscaler_file_descriptor_safety"
"test_with_file_descriptor_safety"
];
2020-12-07 10:52:35 +00:00
pythonImportsCheck = [
"celery"
];
2018-01-09 10:34:35 +00:00
passthru.tests = {
inherit (nixosTests) sourcehut;
};
2019-09-13 20:03:18 +00:00
meta = with lib; {
2018-01-09 10:34:35 +00:00
description = "Distributed task queue";
homepage = "https://github.com/celery/celery/";
2018-01-09 10:34:35 +00:00
license = licenses.bsd3;
2022-01-13 13:59:50 +00:00
maintainers = with maintainers; [ fab ];
2018-01-09 10:34:35 +00:00
};
}