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-07-04 02:14:02 +02:00
version = "0.7.5";
2017-09-13 14:38:45 +02:00
src = pythonPackages.fetchPypi {
inherit pname version;
2018-07-04 02:14:02 +02:00
sha256 = "01w5jh0p66jk4h3cmif4glq42zv44zhziczxjwazkd034rp8dnv9";
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 ];
};
}