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

25 lines
575 B
Nix
Raw Normal View History

2017-09-13 14:38:45 +02:00
{ stdenv, pythonPackages }:
pythonPackages.buildPythonPackage rec {
name = "${pname}-${version}";
pname = "s-tui";
2018-09-21 19:42:36 +02:00
version = "0.8.2";
2017-09-13 14:38:45 +02:00
src = pythonPackages.fetchPypi {
inherit pname version;
2018-09-21 19:42:36 +02:00
sha256 = "18bn0bpnrljx11gj95m2x5hlsnb8jkivlm6b1xx035ldgj1svgzh";
2017-09-13 14:38:45 +02:00
};
propagatedBuildInputs = with pythonPackages; [
urwid
psutil
];
meta = with stdenv.lib; {
homepage = https://amanusk.github.io/s-tui/;
description = "Stress-Terminal UI monitoring tool";
2017-09-13 14:38:45 +02:00
license = licenses.gpl2;
maintainers = with maintainers; [ infinisil ];
};
}