sshuttle: 1.1.2 -> 1.2.0 (#380452)

This commit is contained in:
Nikolay Korotkiy
2025-02-20 11:23:00 +01:00
committed by GitHub
parent 938b2abbeb
commit 97a86007ab
2 changed files with 8 additions and 21 deletions
+8 -8
View File
@@ -15,21 +15,21 @@
python3Packages.buildPythonApplication rec {
pname = "sshuttle";
version = "1.1.2";
version = "1.2.0";
pyproject = true;
src = fetchFromGitHub {
owner = "sshuttle";
repo = "sshuttle";
rev = "v${version}";
hash = "sha256-7jiDTjtL4FiQ4GimSPtUDKPUA29l22a7XILN/s4/DQY=";
tag = "v${version}";
hash = "sha256-xJxFtyLTqPozTaPZxAYZySKIo9c23dwEzn6GHpxW1OY=";
};
patches = [ ./sudo.patch ];
build-system = [ python3Packages.poetry-core ];
nativeBuildInputs = [
installShellFiles
makeWrapper
python3Packages.setuptools-scm
sphinx
];
@@ -61,7 +61,7 @@ python3Packages.buildPythonApplication rec {
}" \
'';
meta = with lib; {
meta = {
description = "Transparent proxy server that works as a poor man's VPN";
mainProgram = "sshuttle";
longDescription = ''
@@ -71,8 +71,8 @@ python3Packages.buildPythonApplication rec {
'';
homepage = "https://github.com/sshuttle/sshuttle";
changelog = "https://github.com/sshuttle/sshuttle/blob/v${version}/CHANGES.rst";
license = licenses.lgpl21Plus;
maintainers = with maintainers; [
license = lib.licenses.lgpl21Plus;
maintainers = with lib.maintainers; [
domenkozar
carlosdagos
];
-13
View File
@@ -1,13 +0,0 @@
diff --git i/sshuttle/client.py w/sshuttle/client.py
index 29c3dfa..da813ed 100644
--- i/sshuttle/client.py
+++ w/sshuttle/client.py
@@ -209,7 +209,7 @@ class FirewallClient:
def __init__(self, method_name, sudo_pythonpath):
self.auto_nets = []
- argvbase = ([sys.executable, sys.argv[0]] +
+ argvbase = ([sys.argv[0]] +
['-v'] * (helpers.verbose or 0) +
['--method', method_name] +
['--firewall'])