2020-07-08 01:54:40 +01:00
|
|
|
{ stdenv
|
|
|
|
, python3Packages
|
|
|
|
, makeWrapper
|
|
|
|
, coreutils
|
|
|
|
, iptables
|
|
|
|
, nettools
|
|
|
|
, openssh
|
|
|
|
, procps
|
|
|
|
}:
|
2017-09-26 07:16:14 +01:00
|
|
|
|
2017-07-09 08:59:08 +01:00
|
|
|
python3Packages.buildPythonApplication rec {
|
2020-03-29 11:34:50 +01:00
|
|
|
pname = "sshuttle";
|
2020-07-20 10:20:00 +01:00
|
|
|
version = "1.0.3";
|
2013-10-05 15:45:51 +01:00
|
|
|
|
2020-03-29 11:34:50 +01:00
|
|
|
src = python3Packages.fetchPypi {
|
|
|
|
inherit pname version;
|
2020-07-20 10:20:00 +01:00
|
|
|
sha256 = "0fff1c88669a20bb6a4e7331960673a3a02a2e04ff163e4c9299496646edcf61";
|
2013-10-05 15:45:51 +01:00
|
|
|
};
|
|
|
|
|
2018-08-30 10:11:33 +01:00
|
|
|
patches = [ ./sudo.patch ];
|
2015-09-24 00:32:25 +01:00
|
|
|
|
2019-03-06 00:37:33 +00:00
|
|
|
nativeBuildInputs = [ makeWrapper python3Packages.setuptools_scm ];
|
2013-10-05 15:45:51 +01:00
|
|
|
|
2019-03-06 00:37:33 +00:00
|
|
|
checkInputs = with python3Packages; [ mock pytest pytestcov pytestrunner flake8 ];
|
2017-07-09 08:59:08 +01:00
|
|
|
|
2020-07-08 01:54:40 +01:00
|
|
|
runtimeDeps = [ coreutils openssh procps ] ++ stdenv.lib.optionals stdenv.isLinux [ iptables nettools ];
|
|
|
|
|
|
|
|
postInstall = ''
|
|
|
|
wrapProgram $out/bin/sshuttle \
|
|
|
|
--prefix PATH : "${stdenv.lib.makeBinPath runtimeDeps}" \
|
2013-10-05 15:45:51 +01:00
|
|
|
'';
|
2017-09-26 07:16:14 +01:00
|
|
|
|
2013-10-05 15:45:51 +01:00
|
|
|
meta = with stdenv.lib; {
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://github.com/sshuttle/sshuttle/";
|
2013-10-05 15:45:51 +01:00
|
|
|
description = "Transparent proxy server that works as a poor man's VPN";
|
2015-09-23 11:19:24 +01: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 11:19:24 +01:00
|
|
|
Works with Linux and Mac OS and supports DNS tunneling.
|
|
|
|
'';
|
2018-08-11 13:36:01 +01:00
|
|
|
license = licenses.gpl2;
|
2019-03-06 00:37:33 +00:00
|
|
|
maintainers = with maintainers; [ domenkozar carlosdagos ];
|
2013-10-05 15:45:51 +01:00
|
|
|
platforms = platforms.unix;
|
|
|
|
};
|
|
|
|
}
|