nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
fork

Configure Feed

Select the types of activity you want to include in your feed.

s-tui: 1.1.6 -> 1.2.0

Signed-off-by: Yuchen He <yuchenhe126@gmail.com>

Yuchen He 3ed3dc16 0f49948a

+13 -9
+13 -9
pkgs/by-name/s-/s-tui/package.nix
··· 2 2 lib, 3 3 stdenv, 4 4 python3Packages, 5 - fetchPypi, 5 + fetchFromGitHub, 6 6 nix-update-script, 7 7 s-tui, 8 8 testers, 9 + stress, 9 10 }: 10 11 11 12 python3Packages.buildPythonPackage rec { 12 13 pname = "s-tui"; 13 - version = "1.1.6"; 14 + version = "1.2.0"; 14 15 format = "setuptools"; 15 16 16 - src = fetchPypi { 17 - inherit pname version; 18 - hash = "sha256-nSdpnM8ubodlPwmvdmNFTn9TsS8i7lWBZ2CifMHDe1c="; 17 + src = fetchFromGitHub { 18 + owner = "amanusk"; 19 + repo = "s-tui"; 20 + tag = "v${version}"; 21 + hash = "sha256-VdQSDRDdRO6jHSuscOQZXnVM6nWHaXRfR4sZ3x5lriI="; 19 22 }; 20 23 21 - propagatedBuildInputs = with python3Packages; [ 22 - urwid 23 - psutil 24 + propagatedBuildInputs = [ 25 + python3Packages.urwid 26 + python3Packages.psutil 27 + stress 24 28 ]; 25 29 26 30 passthru = { ··· 36 32 homepage = "https://amanusk.github.io/s-tui/"; 37 33 description = "Stress-Terminal UI monitoring tool"; 38 34 license = licenses.gpl2Plus; 39 - maintainers = [ ]; 35 + maintainers = with maintainers; [ lilacious ]; 40 36 broken = stdenv.hostPlatform.isDarwin; # https://github.com/amanusk/s-tui/issues/49 41 37 mainProgram = "s-tui"; 42 38 };