2019-10-23 07:24:10 +00:00
|
|
|
{ lib, buildPythonPackage, fetchPypi
|
|
|
|
, paramiko
|
2022-01-18 05:44:22 +00:00
|
|
|
, pytestCheckHook
|
2019-10-23 07:24:10 +00:00
|
|
|
, mock
|
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
2021-01-12 01:55:40 +00:00
|
|
|
version = "0.4.0";
|
2019-10-23 07:24:10 +00:00
|
|
|
pname = "sshtunnel";
|
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2021-01-12 01:55:40 +00:00
|
|
|
sha256 = "sha256-58sOp3Tbgb+RhE2yLecqQKro97D5u5ug9mbUdO9r+fw=";
|
2019-10-23 07:24:10 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
propagatedBuildInputs = [ paramiko ];
|
|
|
|
|
2022-01-18 05:44:22 +00:00
|
|
|
checkInputs = [ pytestCheckHook mock ];
|
2019-10-23 07:24:10 +00:00
|
|
|
|
|
|
|
# disable impure tests
|
2022-01-18 05:44:22 +00:00
|
|
|
disabledTests = [
|
|
|
|
"test_get_keys"
|
|
|
|
"connect_via_proxy"
|
|
|
|
"read_ssh_config"
|
|
|
|
];
|
2019-10-23 07:24:10 +00:00
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "Pure python SSH tunnels";
|
|
|
|
homepage = "https://github.com/pahaz/sshtunnel";
|
|
|
|
license = licenses.mit;
|
|
|
|
maintainers = with maintainers; [ jonringer ];
|
|
|
|
};
|
|
|
|
}
|