From 507ab175316c6b1d4510b696182b1af6148aa7ca Mon Sep 17 00:00:00 2001 From: Robert Scott Date: Sun, 27 Feb 2022 15:33:03 +0000 Subject: [PATCH] python3Packages.celery: add nixosTests.sourcehut as passthru test sourcehut uses celery internally --- pkgs/development/python-modules/celery/default.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/pkgs/development/python-modules/celery/default.nix b/pkgs/development/python-modules/celery/default.nix index eabb3521416e..247d25bf420a 100644 --- a/pkgs/development/python-modules/celery/default.nix +++ b/pkgs/development/python-modules/celery/default.nix @@ -19,6 +19,7 @@ , pythonOlder , pytz , vine +, nixosTests }: buildPythonPackage rec { @@ -78,6 +79,10 @@ buildPythonPackage rec { "celery" ]; + passthru.tests = { + inherit (nixosTests) sourcehut; + }; + meta = with lib; { description = "Distributed task queue"; homepage = "https://github.com/celery/celery/";