diff --git a/pkgs/by-name/sm/smassh/package.nix b/pkgs/by-name/sm/smassh/package.nix index 15ca2dd6ac35..d288733fb4f1 100644 --- a/pkgs/by-name/sm/smassh/package.nix +++ b/pkgs/by-name/sm/smassh/package.nix @@ -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"; }; }