From 773aa447e996b24ad436d03496900cbeaeb96964 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sandro=20J=C3=A4ckel?= Date: Sat, 6 Mar 2021 03:08:07 +0100 Subject: [PATCH] pythonPackages.pyte: disable test which requires not available tools --- pkgs/development/python-modules/pyte/default.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/pyte/default.nix b/pkgs/development/python-modules/pyte/default.nix index 525aaaa2b7a4..b907db22386c 100644 --- a/pkgs/development/python-modules/pyte/default.nix +++ b/pkgs/development/python-modules/pyte/default.nix @@ -15,6 +15,10 @@ buildPythonPackage rec { checkInputs = [ pytestCheckHook ]; + disabledTests = [ + "test_input_output" + ]; + meta = with lib; { description = "Simple VTXXX-compatible linux terminal emulator"; homepage = "https://github.com/selectel/pyte";