nixpkgs/pkgs/tools/system/s-tui/default.nix

26 lines
576 B
Nix
Raw Normal View History

{ stdenv, python3Packages }:
2017-09-13 12:38:45 +00:00
python3Packages.buildPythonPackage rec {
2017-09-13 12:38:45 +00:00
pname = "s-tui";
2020-07-06 22:53:13 +00:00
version = "1.0.1";
2017-09-13 12:38:45 +00:00
src = python3Packages.fetchPypi {
2017-09-13 12:38:45 +00:00
inherit pname version;
2020-07-06 22:53:13 +00:00
sha256 = "1gqrb2xxii43j7kszy7kvv4f6hr8ac4p0m9q8i1xs5fhsqcx186i";
2017-09-13 12:38:45 +00:00
};
propagatedBuildInputs = with python3Packages; [
2017-09-13 12:38:45 +00:00
urwid
psutil
];
LC_ALL = "en_US.UTF-8";
2017-09-13 12:38:45 +00:00
meta = with stdenv.lib; {
homepage = "https://amanusk.github.io/s-tui/";
description = "Stress-Terminal UI monitoring tool";
2017-09-13 12:38:45 +00:00
license = licenses.gpl2;
maintainers = with maintainers; [ infinisil ];
};
}