aboutsummaryrefslogtreecommitdiff
path: root/pkgs/development
diff options
context:
space:
mode:
authorMartin Weinelt <mweinelt@users.noreply.github.com>2020-11-20 01:48:29 +0100
committerGitHub <noreply@github.com>2020-11-20 01:48:29 +0100
commit205e4b6fe4bf6faf9f4c09626382b8443ff997db (patch)
treee97eda7b520b4ada67ea4923939ddd6ae416d05e /pkgs/development
parent7263f7c433c840c042d315e8c2ebdb51ed19fe96 (diff)
parentb9049a50a8bafd3995f4547da0ca05ae88bf4334 (diff)
Merge pull request #104278 from r-ryantm/auto-update/python2.7-asciimatics
python27Packages.asciimatics: 1.11.0 -> 1.12.0
Diffstat (limited to 'pkgs/development')
-rw-r--r--pkgs/development/python-modules/asciimatics/default.nix11
1 files changed, 9 insertions, 2 deletions
diff --git a/pkgs/development/python-modules/asciimatics/default.nix b/pkgs/development/python-modules/asciimatics/default.nix
index 09bf4e6a3da2..aafbaa15ffe7 100644
--- a/pkgs/development/python-modules/asciimatics/default.nix
+++ b/pkgs/development/python-modules/asciimatics/default.nix
@@ -12,11 +12,11 @@
buildPythonPackage rec {
pname = "asciimatics";
- version = "1.11.0";
+ version = "1.12.0";
src = fetchPypi {
inherit pname version;
- sha256 = "132y3gc0dj9vmgajmzz2fyc3icrrgsvynwfl0g31bylm7h9p220x";
+ sha256 = "4120461a3fb345638dee4fe0f8a3d3f9b6d2d2e003f95c5f914523f94463158d";
};
nativeBuildInputs = [
@@ -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";