mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 15:33:13 +00:00
tunnelgraf: 0.6.1 -> 0.7.2 (#353116)
This commit is contained in:
commit
23c3ed4063
@ -1,28 +1,28 @@
|
||||
{ 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";
|
||||
|
Loading…
Reference in New Issue
Block a user