python3Packages.celery: add nixosTests.sourcehut as passthru test

sourcehut uses celery internally
This commit is contained in:
Robert Scott 2022-02-27 15:33:03 +00:00 committed by Jonathan Ringer
parent 71c7509733
commit 507ab17531

View File

@ -19,6 +19,7 @@
, pythonOlder , pythonOlder
, pytz , pytz
, vine , vine
, nixosTests
}: }:
buildPythonPackage rec { buildPythonPackage rec {
@ -78,6 +79,10 @@ buildPythonPackage rec {
"celery" "celery"
]; ];
passthru.tests = {
inherit (nixosTests) sourcehut;
};
meta = with lib; { meta = with lib; {
description = "Distributed task queue"; description = "Distributed task queue";
homepage = "https://github.com/celery/celery/"; homepage = "https://github.com/celery/celery/";