1{ lib, buildPythonPackage, fetchPypi, pytestCheckHook, pytest-runner, wcwidth }:
2
3buildPythonPackage rec {
4 pname = "pyte";
5 version = "0.8.0";
6
7 src = fetchPypi {
8 inherit pname version;
9 sha256 = "7e71d03e972d6f262cbe8704ff70039855f05ee6f7ad9d7129df9c977b5a88c5";
10 };
11
12 nativeBuildInputs = [ pytest-runner ];
13
14 propagatedBuildInputs = [ wcwidth ];
15
16 checkInputs = [ pytestCheckHook ];
17
18 disabledTests = [
19 "test_input_output"
20 ];
21
22 meta = with lib; {
23 description = "Simple VTXXX-compatible linux terminal emulator";
24 homepage = "https://github.com/selectel/pyte";
25 license = licenses.lgpl3;
26 maintainers = with maintainers; [ flokli ];
27 };
28}