2021-03-05 02:31:26 +00:00
|
|
|
{ lib, buildPythonPackage, fetchPypi, pytestCheckHook, pytest-runner, wcwidth }:
|
2017-10-29 10:20:31 +00:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "pyte";
|
2018-06-12 17:47:05 +01:00
|
|
|
version = "0.8.0";
|
2021-03-05 02:31:26 +00:00
|
|
|
|
2017-10-29 10:20:31 +00:00
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2018-06-12 17:47:05 +01:00
|
|
|
sha256 = "7e71d03e972d6f262cbe8704ff70039855f05ee6f7ad9d7129df9c977b5a88c5";
|
2017-10-29 10:20:31 +00:00
|
|
|
};
|
|
|
|
|
2021-03-05 02:31:26 +00:00
|
|
|
nativeBuildInputs = [ pytest-runner ];
|
2017-10-29 10:20:31 +00:00
|
|
|
|
2021-03-05 02:31:26 +00:00
|
|
|
propagatedBuildInputs = [ wcwidth ];
|
2017-10-29 10:20:31 +00:00
|
|
|
|
2021-03-05 02:31:26 +00:00
|
|
|
checkInputs = [ pytestCheckHook ];
|
2017-10-29 10:20:31 +00:00
|
|
|
|
2021-03-06 02:08:07 +00:00
|
|
|
disabledTests = [
|
|
|
|
"test_input_output"
|
|
|
|
];
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2017-10-29 10:20:31 +00:00
|
|
|
description = "Simple VTXXX-compatible linux terminal emulator";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://github.com/selectel/pyte";
|
2017-10-29 10:20:31 +00:00
|
|
|
license = licenses.lgpl3;
|
|
|
|
maintainers = with maintainers; [ flokli ];
|
|
|
|
};
|
|
|
|
}
|