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