smassh: 3.1.4 -> 3.1.6 (#345631)

This commit is contained in:
h7x4
2024-10-01 17:22:29 +02:00
committed by GitHub
+12 -6
View File
@@ -11,25 +11,28 @@ let
in
python3.pkgs.buildPythonApplication rec {
pname = "smassh";
version = "3.1.4";
version = "3.1.6";
pyproject = true;
src = fetchFromGitHub {
owner = "kraanzu";
repo = "smassh";
rev = "v${version}";
hash = "sha256-MeLub6zeviY7yyPP2FI9b37nUwHZbxW6onuFXSkmvqk";
hash = "sha256-P0fZHSsaKIwJspEBxM5MEK3Z4kemXJWlIOQI9cmvlF4=";
};
nativeBuildInputs = with python3.pkgs; [ poetry-core ];
pythonRelaxDeps = [ "textual" ];
pythonRelaxDeps = [
"platformdirs"
"textual"
];
propagatedBuildInputs = with python3.pkgs; [
textual
appdirs
click
platformdirs
requests
textual
];
# No tests available
@@ -45,7 +48,10 @@ python3.pkgs.buildPythonApplication rec {
homepage = "https://github.com/kraanzu/smassh";
changelog = "https://github.com/kraanzu/smassh/blob/main/CHANGELOG.md";
license = licenses.gpl3Plus;
maintainers = with maintainers; [ aimpizza ];
maintainers = with maintainers; [
aimpizza
kraanzu
];
mainProgram = "smassh";
};
}