2021-07-17 21:03:01 +00:00
|
|
|
{ lib
|
|
|
|
, stdenv
|
2020-07-08 00:54:40 +00:00
|
|
|
, python3Packages
|
2023-05-25 16:03:52 +00:00
|
|
|
, fetchPypi
|
2023-08-18 16:43:15 +00:00
|
|
|
, installShellFiles
|
2020-07-08 00:54:40 +00:00
|
|
|
, makeWrapper
|
2023-08-18 16:43:15 +00:00
|
|
|
, sphinx
|
2020-07-08 00:54:40 +00:00
|
|
|
, coreutils
|
|
|
|
, iptables
|
|
|
|
, nettools
|
|
|
|
, openssh
|
|
|
|
, procps
|
|
|
|
}:
|
2017-09-26 06:16:14 +00:00
|
|
|
|
2017-07-09 07:59:08 +00:00
|
|
|
python3Packages.buildPythonApplication rec {
|
2020-03-29 10:34:50 +00:00
|
|
|
pname = "sshuttle";
|
2022-09-06 11:41:55 +00:00
|
|
|
version = "1.1.1";
|
2013-10-05 14:45:51 +00:00
|
|
|
|
2023-05-25 16:03:52 +00:00
|
|
|
src = fetchPypi {
|
2020-03-29 10:34:50 +00:00
|
|
|
inherit pname version;
|
2022-09-06 11:41:55 +00:00
|
|
|
sha256 = "sha256-9aPtHlqxITx6bfhgr0HxqQOrLK+/73Hzcazc/yHmnuY=";
|
2013-10-05 14:45:51 +00:00
|
|
|
};
|
|
|
|
|
2018-08-30 09:11:33 +00:00
|
|
|
patches = [ ./sudo.patch ];
|
2015-09-23 23:32:25 +00:00
|
|
|
|
2021-07-17 21:03:01 +00:00
|
|
|
postPatch = ''
|
|
|
|
substituteInPlace setup.cfg \
|
|
|
|
--replace '--cov=sshuttle --cov-branch --cov-report=term-missing' ""
|
|
|
|
'';
|
2013-10-05 14:45:51 +00:00
|
|
|
|
2023-08-18 16:43:15 +00:00
|
|
|
nativeBuildInputs = [
|
|
|
|
installShellFiles
|
|
|
|
makeWrapper
|
|
|
|
python3Packages.setuptools-scm
|
|
|
|
sphinx
|
|
|
|
];
|
2017-07-09 07:59:08 +00:00
|
|
|
|
2023-01-21 12:00:00 +00:00
|
|
|
nativeCheckInputs = with python3Packages; [ pytestCheckHook ];
|
2020-07-08 00:54:40 +00:00
|
|
|
|
2023-08-18 16:43:15 +00:00
|
|
|
postBuild = ''
|
|
|
|
make man -C docs
|
|
|
|
'';
|
|
|
|
|
2020-07-08 00:54:40 +00:00
|
|
|
postInstall = ''
|
2023-08-18 16:43:15 +00:00
|
|
|
installManPage docs/_build/man/*
|
|
|
|
|
2020-07-08 00:54:40 +00:00
|
|
|
wrapProgram $out/bin/sshuttle \
|
2021-07-17 21:03:01 +00:00
|
|
|
--prefix PATH : "${lib.makeBinPath ([ coreutils openssh procps ] ++ lib.optionals stdenv.isLinux [ iptables nettools ])}" \
|
2013-10-05 14:45:51 +00:00
|
|
|
'';
|
2017-09-26 06:16:14 +00:00
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2013-10-05 14:45:51 +00:00
|
|
|
description = "Transparent proxy server that works as a poor man's VPN";
|
2015-09-23 10:19:24 +00:00
|
|
|
longDescription = ''
|
|
|
|
Forward connections over SSH, without requiring administrator access to the
|
2019-03-06 00:37:33 +00:00
|
|
|
target network (though it does require Python 2.7, Python 3.5 or later at both ends).
|
2015-09-23 10:19:24 +00:00
|
|
|
Works with Linux and Mac OS and supports DNS tunneling.
|
|
|
|
'';
|
2023-08-18 16:45:56 +00:00
|
|
|
homepage = "https://github.com/sshuttle/sshuttle";
|
|
|
|
changelog = "https://github.com/sshuttle/sshuttle/blob/v${version}/CHANGES.rst";
|
|
|
|
license = licenses.lgpl21Plus;
|
2023-07-23 17:30:22 +00:00
|
|
|
maintainers = with maintainers; [ domenkozar carlosdagos ];
|
2013-10-05 14:45:51 +00:00
|
|
|
};
|
|
|
|
}
|