Unverified Commit 23c3ed40 authored by Weijia Wang's avatar Weijia Wang Committed by GitHub
Browse files

tunnelgraf: 0.6.1 -> 0.7.2 (#353116)

parents 68c8a7eb 90d6a677
Loading
Loading
Loading
Loading
+10 −11
Original line number Diff line number Diff line
{ lib
, fetchFromGitHub
, python3
{
  lib,
  fetchFromGitHub,
  python3,
}:

python3.pkgs.buildPythonApplication rec {
  pname = "tunnelgraf";
  version = "0.6.1";
  version = "0.7.2";
  pyproject = true;

  src = fetchFromGitHub {
    owner = "denniswalker";
    repo = "tunnelgraf";
    rev = "refs/tags/v${version}";
    hash = "sha256-CsrbSpp1VszEAKpmHx8GbB7vfZCOvB+tDFNFwWKexEw=";
    hash = "sha256-pwHP9eAf2S08ucUawxrQvzMBJNITxbddoLzEoSNUdao=";
  };

  pythonRelaxDeps = [
    "click"
    "paramiko"
    "pydantic"
  ];

  build-system = with python3.pkgs; [
    hatchling
  ];
  build-system = with python3.pkgs; [ hatchling ];

  dependencies = with python3.pkgs; [
    click
@@ -37,13 +37,12 @@ python3.pkgs.buildPythonApplication rec {
  # Project has no tests
  doCheck = false;

  pythonImportsCheck = [
    "tunnelgraf"
  ];
  pythonImportsCheck = [ "tunnelgraf" ];

  meta = with lib; {
    description = "Tool to manage SSH tunnel hops to many endpoints";
    homepage = "https://github.com/denniswalker/tunnelgraf";
    changelog = "https://github.com/denniswalker/tunnelgraf/releases/tag/v${version}";
    license = licenses.mit;
    maintainers = with maintainers; [ fab ];
    mainProgram = "tunnelgraf";