polysh: init at 1.0.4 (#486570)

This commit is contained in:
Sandro
2026-05-21 20:19:13 +00:00
committed by GitHub
+31
View File
@@ -0,0 +1,31 @@
{
lib,
python3Packages,
fetchFromGitHub,
}:
python3Packages.buildPythonApplication (finalAttrs: {
pname = "polysh";
version = "1.0.4";
pyproject = true;
__structuredAttrs = true;
src = fetchFromGitHub {
owner = "innogames";
repo = "polysh";
tag = "polysh-${finalAttrs.version}";
hash = "sha256-fmcu3lWSV5aft+gX5QjypdK5pyfdVd0HDNekiFVdlBI=";
};
build-system = with python3Packages; [
hatchling
];
meta = {
description = "Remote shell multiplexer for executing commands on multiple hosts";
homepage = "https://github.com/innogames/polysh";
changelog = "https://github.com/innogames/polysh/releases/tag/${finalAttrs.src.tag}";
license = lib.licenses.gpl2Plus;
maintainers = with lib.maintainers; [ seqizz ];
platforms = lib.platforms.unix;
};
})