depot/third_party/nixpkgs/pkgs/development/python-modules/pyte/default.nix
Default email 02cf88bb76 Project import generated by Copybara.
GitOrigin-RevId: c4a0efdd5a728e20791b8d8d2f26f90ac228ee8d
2022-08-12 15:06:08 +03:00

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 ];
};
}