depot/third_party/nixpkgs/pkgs/development/python-modules/sshtunnel/default.nix
Default email 81047829ea Project import generated by Copybara.
GitOrigin-RevId: 48d63e924a2666baf37f4f14a18f19347fbd54a2
2022-02-10 15:34:41 -05:00

33 lines
674 B
Nix

{ lib, buildPythonPackage, fetchPypi
, paramiko
, pytestCheckHook
, mock
}:
buildPythonPackage rec {
version = "0.4.0";
pname = "sshtunnel";
src = fetchPypi {
inherit pname version;
sha256 = "sha256-58sOp3Tbgb+RhE2yLecqQKro97D5u5ug9mbUdO9r+fw=";
};
propagatedBuildInputs = [ paramiko ];
checkInputs = [ pytestCheckHook mock ];
# disable impure tests
disabledTests = [
"test_get_keys"
"connect_via_proxy"
"read_ssh_config"
];
meta = with lib; {
description = "Pure python SSH tunnels";
homepage = "https://github.com/pahaz/sshtunnel";
license = licenses.mit;
maintainers = with maintainers; [ jonringer ];
};
}