s-tui: init at 0.6.0

This commit is contained in:
Silvan Mosberger 2017-09-13 14:38:45 +02:00
parent c78c565245
commit 753d114b34
No known key found for this signature in database
GPG Key ID: 9424360B4B85C9E7
2 changed files with 26 additions and 0 deletions

View File

@ -0,0 +1,24 @@
{ stdenv, pythonPackages }:
pythonPackages.buildPythonPackage rec {
name = "${pname}-${version}";
pname = "s-tui";
version = "0.6.2";
src = pythonPackages.fetchPypi {
inherit pname version;
sha256 = "0fijk26sm51bnxf7plzd1fn2k4f8mdqd7j9zqc3d8zri7228vik2";
};
propagatedBuildInputs = with pythonPackages; [
urwid
psutil
];
meta = with stdenv.lib; {
homepage = https://amanusk.github.io/s-tui/;
descrption = "Stress-Terminal UI monitoring tool";
license = licenses.gpl2;
maintainers = with maintainers; [ infinisil ];
};
}

View File

@ -4195,6 +4195,8 @@ with pkgs;
rzip = callPackage ../tools/compression/rzip { };
s-tui = callPackage ../tools/system/s-tui { };
s3backer = callPackage ../tools/filesystems/s3backer { };
s3fs = callPackage ../tools/filesystems/s3fs { };