nixpkgs/pkgs/development/python-modules/sshtunnel/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

34 lines
674 B
Nix
Raw Normal View History

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 {
version = "0.4.0";
2019-10-23 07:24:10 +00:00
pname = "sshtunnel";
src = fetchPypi {
inherit pname version;
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 ];
};
}