s-tui: 1.1.6 -> 1.2.0 (#422155)
This commit is contained in:
@@ -2,25 +2,29 @@
|
||||
lib,
|
||||
stdenv,
|
||||
python3Packages,
|
||||
fetchPypi,
|
||||
fetchFromGitHub,
|
||||
nix-update-script,
|
||||
s-tui,
|
||||
testers,
|
||||
stress,
|
||||
}:
|
||||
|
||||
python3Packages.buildPythonPackage rec {
|
||||
pname = "s-tui";
|
||||
version = "1.1.6";
|
||||
version = "1.2.0";
|
||||
format = "setuptools";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
hash = "sha256-nSdpnM8ubodlPwmvdmNFTn9TsS8i7lWBZ2CifMHDe1c=";
|
||||
src = fetchFromGitHub {
|
||||
owner = "amanusk";
|
||||
repo = "s-tui";
|
||||
tag = "v${version}";
|
||||
hash = "sha256-VdQSDRDdRO6jHSuscOQZXnVM6nWHaXRfR4sZ3x5lriI=";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = with python3Packages; [
|
||||
urwid
|
||||
psutil
|
||||
propagatedBuildInputs = [
|
||||
python3Packages.urwid
|
||||
python3Packages.psutil
|
||||
stress
|
||||
];
|
||||
|
||||
passthru = {
|
||||
@@ -32,7 +36,7 @@ python3Packages.buildPythonPackage rec {
|
||||
homepage = "https://amanusk.github.io/s-tui/";
|
||||
description = "Stress-Terminal UI monitoring tool";
|
||||
license = licenses.gpl2Plus;
|
||||
maintainers = [ ];
|
||||
maintainers = with maintainers; [ lilacious ];
|
||||
broken = stdenv.hostPlatform.isDarwin; # https://github.com/amanusk/s-tui/issues/49
|
||||
mainProgram = "s-tui";
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user