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
, 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/";