summary refs log tree commit diff
path: root/pkgs/tools
diff options
context:
space:
mode:
authorSilvan Mosberger <infinisil@icloud.com>2017-09-13 14:38:45 +0200
committerSilvan Mosberger <infinisil@icloud.com>2017-09-13 17:48:56 +0200
commit753d114b3473655839a0bcc7b4817109ff3504e2 (patch)
tree6b399ef279748ce7806386185e965e8b9cb4e058 /pkgs/tools
parentc78c565245c9dc500dbd8d24b5a399227b612903 (diff)
s-tui: init at 0.6.0
Diffstat (limited to 'pkgs/tools')
-rw-r--r--pkgs/tools/system/s-tui/default.nix24
1 files changed, 24 insertions, 0 deletions
diff --git a/pkgs/tools/system/s-tui/default.nix b/pkgs/tools/system/s-tui/default.nix
new file mode 100644
index 0000000000000..6d6a3461f7719
--- /dev/null
+++ b/pkgs/tools/system/s-tui/default.nix
@@ -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 ];
+  };
+}