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

24 lines
543 B
Nix
Raw Normal View History

2017-09-13 13:38:45 +01:00
{ stdenv, pythonPackages }:
pythonPackages.buildPythonPackage rec {
pname = "s-tui";
2020-01-22 04:02:36 +00:00
version = "1.0.0";
2017-09-13 13:38:45 +01:00
src = pythonPackages.fetchPypi {
inherit pname version;
2020-01-22 04:02:36 +00:00
sha256 = "0r5yhlsi5xiy7ii1w4kqkaxz9069v5bbfwi3x3xnxhk51yjfgr8n";
2017-09-13 13:38:45 +01: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 13:38:45 +01:00
license = licenses.gpl2;
maintainers = with maintainers; [ infinisil ];
};
}