From 83c88278c3c845d7183c3280ce975a6d36f375eb Mon Sep 17 00:00:00 2001 From: Martin Weinelt Date: Wed, 16 Feb 2022 01:27:27 +0100 Subject: [PATCH] isso: fix check phase --- pkgs/servers/isso/default.nix | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/pkgs/servers/isso/default.nix b/pkgs/servers/isso/default.nix index f02fc8df3b1b..4368663ef796 100644 --- a/pkgs/servers/isso/default.nix +++ b/pkgs/servers/isso/default.nix @@ -50,7 +50,9 @@ with python3Packages; buildPythonApplication rec { checkInputs = [ nose ]; checkPhase = '' - ${python.interpreter} setup.py nosetests + runHook preCheck + ${python.interpreter} -m nose + runHook postCheck ''; passthru.tests = { inherit (nixosTests) isso; };