1 { lib, buildPythonPackage, fetchPypi
7 buildPythonPackage rec {
12 inherit pname version;
13 sha256 = "sha256-58sOp3Tbgb+RhE2yLecqQKro97D5u5ug9mbUdO9r+fw=";
16 propagatedBuildInputs = [ paramiko ];
18 checkInputs = [ pytest mock ];
20 # disable impure tests
22 pytest -k 'not connect_via_proxy and not read_ssh_config'
26 description = "Pure python SSH tunnels";
27 homepage = "https://github.com/pahaz/sshtunnel";
28 license = licenses.mit;
29 maintainers = with maintainers; [ jonringer ];