2017-09-13 14:38:45 +02:00
|
|
|
{ stdenv, pythonPackages }:
|
|
|
|
|
|
|
|
pythonPackages.buildPythonPackage rec {
|
|
|
|
name = "${pname}-${version}";
|
|
|
|
pname = "s-tui";
|
2018-12-02 07:17:37 +01:00
|
|
|
version = "0.8.3";
|
2017-09-13 14:38:45 +02:00
|
|
|
|
|
|
|
src = pythonPackages.fetchPypi {
|
|
|
|
inherit pname version;
|
2018-12-02 07:17:37 +01:00
|
|
|
sha256 = "00lsh2v4i8rwfyjyxx5lijd6rnk9smcfffhzg5sv94ijpcnh216m";
|
2017-09-13 14:38:45 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
propagatedBuildInputs = with pythonPackages; [
|
|
|
|
urwid
|
|
|
|
psutil
|
|
|
|
];
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
homepage = https://amanusk.github.io/s-tui/;
|
2017-12-05 23:20:11 +01:00
|
|
|
description = "Stress-Terminal UI monitoring tool";
|
2017-09-13 14:38:45 +02:00
|
|
|
license = licenses.gpl2;
|
|
|
|
maintainers = with maintainers; [ infinisil ];
|
|
|
|
};
|
|
|
|
}
|