mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-25 00:12:56 +00:00
38 lines
801 B
Nix
38 lines
801 B
Nix
{ lib
|
|
, stdenv
|
|
, python3Packages
|
|
, fetchPypi
|
|
, nix-update-script
|
|
, s-tui
|
|
, testers
|
|
}:
|
|
|
|
python3Packages.buildPythonPackage rec {
|
|
pname = "s-tui";
|
|
version = "1.1.4";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "sha256-soVrmzlVy0zrqvOclR7SfPphp4xAEHv+xdr0NN19ye0=";
|
|
};
|
|
|
|
propagatedBuildInputs = with python3Packages; [
|
|
urwid
|
|
psutil
|
|
];
|
|
|
|
passthru = {
|
|
updateScript = nix-update-script { };
|
|
tests = testers.testVersion { package = s-tui; };
|
|
};
|
|
|
|
meta = with lib; {
|
|
homepage = "https://amanusk.github.io/s-tui/";
|
|
description = "Stress-Terminal UI monitoring tool";
|
|
license = licenses.gpl2;
|
|
maintainers = with maintainers; [ infinisil ];
|
|
broken = stdenv.isDarwin; # https://github.com/amanusk/s-tui/issues/49
|
|
mainProgram = "s-tui";
|
|
};
|
|
}
|