mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 22:36:23 +01:00
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:
parent
b0c93fc5a3
commit
d1c05d8406
1 changed files with 52 additions and 0 deletions
52
pkgs/by-name/tu/tunnelgraf/package.nix
Normal file
52
pkgs/by-name/tu/tunnelgraf/package.nix
Normal 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";
|
||||
};
|
||||
}
|
Loading…
Reference in a new issue