nixpkgs/pkgs/development/python-modules/pyte/default.nix

29 lines
677 B
Nix
Raw Normal View History

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
disabledTests = [
"test_input_output"
];
meta = with lib; {
2017-10-29 10:20:31 +00:00
description = "Simple VTXXX-compatible linux terminal emulator";
homepage = "https://github.com/selectel/pyte";
2017-10-29 10:20:31 +00:00
license = licenses.lgpl3;
maintainers = with maintainers; [ flokli ];
};
}