tunnelgraf: init at 0.6.1

Tool to manage SSH tunnel hops to many endpoints

https://github.com/denniswalker/tunnelgraf
This commit is contained in:
Fabian Affolter 2024-03-25 10:15:36 +01:00
parent b0c93fc5a3
commit d1c05d8406
1 changed files with 52 additions and 0 deletions

View File

@ -0,0 +1,52 @@
{ lib
, fetchFromGitHub
, python3
}:
python3.pkgs.buildPythonApplication rec {
pname = "tunnelgraf";
version = "0.6.1";
pyproject = true;
src = fetchFromGitHub {
owner = "denniswalker";
repo = "tunnelgraf";
rev = "refs/tags/v${version}";
hash = "sha256-CsrbSpp1VszEAKpmHx8GbB7vfZCOvB+tDFNFwWKexEw=";
};
pythonRelaxDeps = [
"click"
"pydantic"
];
build-system = with python3.pkgs; [
hatchling
pythonRelaxDepsHook
];
dependencies = with python3.pkgs; [
click
deepmerge
paramiko
pydantic
python-hosts
pyyaml
sshtunnel
];
# Project has no tests
doCheck = false;
pythonImportsCheck = [
"tunnelgraf"
];
meta = with lib; {
description = "Tool to manage SSH tunnel hops to many endpoints";
homepage = "https://github.com/denniswalker/tunnelgraf";
license = licenses.mit;
maintainers = with maintainers; [ fab ];
mainProgram = "tunnelgraf";
};
}