From 953d6b745f4e26d9e08034d8ba099e3e72542831 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Robert=20Sch=C3=BCtz?= Date: Wed, 8 Jul 2026 19:41:11 -0700 Subject: [PATCH] python3Packages.vdirsyncer: use versionCheckHook --- pkgs/development/python-modules/vdirsyncer/default.nix | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/pkgs/development/python-modules/vdirsyncer/default.nix b/pkgs/development/python-modules/vdirsyncer/default.nix index 21759bfb6a85..c7aeb7d4f1ef 100644 --- a/pkgs/development/python-modules/vdirsyncer/default.nix +++ b/pkgs/development/python-modules/vdirsyncer/default.nix @@ -17,8 +17,7 @@ pytest-asyncio, trustme, aioresponses, - vdirsyncer, - testers, + versionCheckHook, }: buildPythonPackage rec { @@ -67,7 +66,9 @@ buildPythonPackage rec { "test_verbosity" ]; - passthru.tests.version = testers.testVersion { package = vdirsyncer; }; + nativeInstallCheckInputs = [ + versionCheckHook + ]; meta = { description = "Synchronize calendars and contacts";