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

26 lines
566 B
Nix
Raw Normal View History

{ lib, python3Packages }:
2017-09-13 15:38:45 +03:00
python3Packages.buildPythonPackage rec {
2017-09-13 15:38:45 +03:00
pname = "s-tui";
2020-07-07 01:53:13 +03:00
version = "1.0.1";
2017-09-13 15:38:45 +03:00
src = python3Packages.fetchPypi {
2017-09-13 15:38:45 +03:00
inherit pname version;
2020-07-07 01:53:13 +03:00
sha256 = "1gqrb2xxii43j7kszy7kvv4f6hr8ac4p0m9q8i1xs5fhsqcx186i";
2017-09-13 15:38:45 +03:00
};
propagatedBuildInputs = with python3Packages; [
2017-09-13 15:38:45 +03:00
urwid
psutil
];
LC_ALL = "en_US.UTF-8";
meta = with lib; {
homepage = "https://amanusk.github.io/s-tui/";
description = "Stress-Terminal UI monitoring tool";
2017-09-13 15:38:45 +03:00
license = licenses.gpl2;
maintainers = with maintainers; [ infinisil ];
};
}