1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-18 11:40:45 +00:00

Merge pull request #175528 from risicle/ris-celery-darwin-unbroken

python3Packages.celery: unmark as broken
This commit is contained in:
Sandro 2022-05-31 01:41:25 +02:00 committed by GitHub
commit 97905532e0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -69,6 +69,11 @@ buildPythonPackage rec {
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"
];
pythonImportsCheck = [
@ -80,7 +85,6 @@ buildPythonPackage rec {
};
meta = with lib; {
broken = stdenv.isDarwin;
description = "Distributed task queue";
homepage = "https://github.com/celery/celery/";
license = licenses.bsd3;