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