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-01-22 04:02:36 +00:00
version = "1.0.0";
2017-09-13 12:38:45 +00:00
src = python3Packages.fetchPypi {
2017-09-13 12:38:45 +00:00
inherit pname version;
2020-01-22 04:02:36 +00:00
sha256 = "0r5yhlsi5xiy7ii1w4kqkaxz9069v5bbfwi3x3xnxhk51yjfgr8n";
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 ];
};
}