Unverified Commit ab9554bb authored by h7x4's avatar h7x4 Committed by GitHub
Browse files

smassh: 3.1.4 -> 3.1.6 (#345631)

parents 1ab8d123 fe9836b2
Loading
Loading
Loading
Loading
+12 −6
Original line number Diff line number Diff line
@@ -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";
  };
}