From b9049a50a8bafd3995f4547da0ca05ae88bf4334 Mon Sep 17 00:00:00 2001 From: Martin Weinelt Date: Fri, 20 Nov 2020 01:46:46 +0100 Subject: [PATCH] pythonPackages.asciimatics: add pythonImportsCheck --- pkgs/development/python-modules/asciimatics/default.nix | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/pkgs/development/python-modules/asciimatics/default.nix b/pkgs/development/python-modules/asciimatics/default.nix index 7fcf6768792..aafbaa15ffe 100644 --- a/pkgs/development/python-modules/asciimatics/default.nix +++ b/pkgs/development/python-modules/asciimatics/default.nix @@ -39,6 +39,13 @@ buildPythonPackage rec { # which is too complicated to setup here doCheck = false; + pythonImportsCheck = [ + "asciimatics.effects" + "asciimatics.renderers" + "asciimatics.scene" + "asciimatics.screen" + ]; + meta = with lib; { description = "Helps to create full-screen text UIs (from interactive forms to ASCII animations) on any platform"; homepage = "https://github.com/peterbrittain/asciimatics";