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

25 lines
575 B
Nix
Raw Normal View History

2017-09-13 08:38:45 -04:00
{ stdenv, pythonPackages }:
pythonPackages.buildPythonPackage rec {
name = "${pname}-${version}";
pname = "s-tui";
version = "0.8.3";
2017-09-13 08:38:45 -04:00
src = pythonPackages.fetchPypi {
inherit pname version;
sha256 = "00lsh2v4i8rwfyjyxx5lijd6rnk9smcfffhzg5sv94ijpcnh216m";
2017-09-13 08:38:45 -04: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 08:38:45 -04:00
license = licenses.gpl2;
maintainers = with maintainers; [ infinisil ];
};
}