Merge pull request #80628 from mweinelt/pr/s-tui
s-tui: migrate to python3
This commit is contained in:
commit
1035f7259f
@ -1,19 +1,21 @@
|
|||||||
{ stdenv, pythonPackages }:
|
{ stdenv, python3Packages }:
|
||||||
|
|
||||||
pythonPackages.buildPythonPackage rec {
|
python3Packages.buildPythonPackage rec {
|
||||||
pname = "s-tui";
|
pname = "s-tui";
|
||||||
version = "1.0.0";
|
version = "1.0.0";
|
||||||
|
|
||||||
src = pythonPackages.fetchPypi {
|
src = python3Packages.fetchPypi {
|
||||||
inherit pname version;
|
inherit pname version;
|
||||||
sha256 = "0r5yhlsi5xiy7ii1w4kqkaxz9069v5bbfwi3x3xnxhk51yjfgr8n";
|
sha256 = "0r5yhlsi5xiy7ii1w4kqkaxz9069v5bbfwi3x3xnxhk51yjfgr8n";
|
||||||
};
|
};
|
||||||
|
|
||||||
propagatedBuildInputs = with pythonPackages; [
|
propagatedBuildInputs = with python3Packages; [
|
||||||
urwid
|
urwid
|
||||||
psutil
|
psutil
|
||||||
];
|
];
|
||||||
|
|
||||||
|
LC_ALL = "en_US.UTF-8";
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
homepage = https://amanusk.github.io/s-tui/;
|
homepage = https://amanusk.github.io/s-tui/;
|
||||||
description = "Stress-Terminal UI monitoring tool";
|
description = "Stress-Terminal UI monitoring tool";
|
||||||
|
Loading…
x
Reference in New Issue
Block a user