summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMartin Weinelt <hexa@darmstadt.ccc.de>2020-11-20 01:46:46 +0100
committerMartin Weinelt <hexa@darmstadt.ccc.de>2020-11-20 01:48:03 +0100
commitb9049a50a8bafd3995f4547da0ca05ae88bf4334 (patch)
tree88fc78634fcfbb9e6d6a611cd07e1c08d7117e0f
parentcaebe2fa9ad4626d8b7180b8f0e8565cec3e43ea (diff)
pythonPackages.asciimatics: add pythonImportsCheck
-rw-r--r--pkgs/development/python-modules/asciimatics/default.nix7
1 files changed, 7 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/asciimatics/default.nix b/pkgs/development/python-modules/asciimatics/default.nix
index 7fcf67687929..aafbaa15ffe7 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";