Skip to content

Commit ab9554b

Browse files
authored
smassh: 3.1.4 -> 3.1.6 (#345631)
2 parents 1ab8d12 + fe9836b commit ab9554b

File tree

1 file changed

+12
-6
lines changed

1 file changed

+12
-6
lines changed

pkgs/by-name/sm/smassh/package.nix

Lines changed: 12 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -11,25 +11,28 @@ let
1111
in
1212
python3.pkgs.buildPythonApplication rec {
1313
pname = "smassh";
14-
version = "3.1.4";
14+
version = "3.1.6";
1515
pyproject = true;
1616

1717
src = fetchFromGitHub {
1818
owner = "kraanzu";
1919
repo = "smassh";
2020
rev = "v${version}";
21-
hash = "sha256-MeLub6zeviY7yyPP2FI9b37nUwHZbxW6onuFXSkmvqk";
21+
hash = "sha256-P0fZHSsaKIwJspEBxM5MEK3Z4kemXJWlIOQI9cmvlF4=";
2222
};
2323

2424
nativeBuildInputs = with python3.pkgs; [ poetry-core ];
2525

26-
pythonRelaxDeps = [ "textual" ];
26+
pythonRelaxDeps = [
27+
"platformdirs"
28+
"textual"
29+
];
2730

2831
propagatedBuildInputs = with python3.pkgs; [
29-
textual
30-
appdirs
3132
click
33+
platformdirs
3234
requests
35+
textual
3336
];
3437

3538
# No tests available
@@ -45,7 +48,10 @@ python3.pkgs.buildPythonApplication rec {
4548
homepage = "https://github.com/kraanzu/smassh";
4649
changelog = "https://github.com/kraanzu/smassh/blob/main/CHANGELOG.md";
4750
license = licenses.gpl3Plus;
48-
maintainers = with maintainers; [ aimpizza ];
51+
maintainers = with maintainers; [
52+
aimpizza
53+
kraanzu
54+
];
4955
mainProgram = "smassh";
5056
};
5157
}

0 commit comments

Comments
 (0)