From 6e3ffc411982b934ca10a637f7682d9d570db1ec Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Robert=20Sch=C3=BCtz?= Date: Wed, 8 Jul 2026 19:43:25 -0700 Subject: [PATCH] python3Packages.vdirsyncer: add NixOS test to passthru.tests --- pkgs/development/python-modules/vdirsyncer/default.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/pkgs/development/python-modules/vdirsyncer/default.nix b/pkgs/development/python-modules/vdirsyncer/default.nix index c7aeb7d4f1ef..39fc9d66bb54 100644 --- a/pkgs/development/python-modules/vdirsyncer/default.nix +++ b/pkgs/development/python-modules/vdirsyncer/default.nix @@ -17,6 +17,7 @@ pytest-asyncio, trustme, aioresponses, + nixosTests, versionCheckHook, }: @@ -70,6 +71,10 @@ buildPythonPackage rec { versionCheckHook ]; + passthru.tests = { + inherit (nixosTests) vdirsyncer; + }; + meta = { description = "Synchronize calendars and contacts"; homepage = "https://github.com/pimutils/vdirsyncer";