02cf88bb76
GitOrigin-RevId: c4a0efdd5a728e20791b8d8d2f26f90ac228ee8d
28 lines
664 B
Nix
28 lines
664 B
Nix
{ lib, buildPythonPackage, fetchPypi, pytestCheckHook, pytest-runner, wcwidth }:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "pyte";
|
|
version = "0.8.1";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "sha256-ub/Rt4F1nnVypuVTwBDMk+71ihnY0VkERthMGbGwl7A=";
|
|
};
|
|
|
|
nativeBuildInputs = [ pytest-runner ];
|
|
|
|
propagatedBuildInputs = [ wcwidth ];
|
|
|
|
checkInputs = [ pytestCheckHook ];
|
|
|
|
disabledTests = [
|
|
"test_input_output"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Simple VTXXX-compatible linux terminal emulator";
|
|
homepage = "https://github.com/selectel/pyte";
|
|
license = licenses.lgpl3;
|
|
maintainers = with maintainers; [ flokli ];
|
|
};
|
|
}
|