From d3f434e74926151ce91da085127dc3c14a784d0f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Robert=20Sch=C3=BCtz?= Date: Tue, 7 Jul 2020 14:18:23 +0200 Subject: [PATCH] python.pkgs.pytest-sugar: run tests --- pkgs/development/python-modules/pytest-sugar/default.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/pkgs/development/python-modules/pytest-sugar/default.nix b/pkgs/development/python-modules/pytest-sugar/default.nix index cb5b7bf099f1..9633ab70cf17 100644 --- a/pkgs/development/python-modules/pytest-sugar/default.nix +++ b/pkgs/development/python-modules/pytest-sugar/default.nix @@ -4,6 +4,7 @@ , termcolor , pytest , packaging +, pytestCheckHook }: buildPythonPackage rec { @@ -21,6 +22,10 @@ buildPythonPackage rec { packaging ]; + checkInputs = [ + pytestCheckHook + ]; + meta = with lib; { description = "A plugin that changes the default look and feel of py.test"; homepage = "https://github.com/Frozenball/pytest-sugar";