587713944a
GitOrigin-RevId: 6143fc5eeb9c4f00163267708e26191d1e918932
47 lines
933 B
Nix
47 lines
933 B
Nix
{ lib
|
|
, stdenv
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
, paramiko
|
|
, pytestCheckHook
|
|
, tornado
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "webssh";
|
|
version = "1.6.2";
|
|
format = "setuptools";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
hash = "sha256-mRestRJukaf7ti3vIs/MM/R+zpGmK551j5HAM2chBsE=";
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
paramiko
|
|
tornado
|
|
];
|
|
|
|
nativeCheckInputs = [
|
|
pytestCheckHook
|
|
];
|
|
|
|
pythonImportsCheck = [
|
|
"webssh"
|
|
];
|
|
|
|
disabledTests = [
|
|
# Test fails with AttributeError (possibly related to paramiko update)
|
|
"test_app_with_bad_host_key"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Web based SSH client";
|
|
mainProgram = "wssh";
|
|
homepage = "https://github.com/huashengdun/webssh/";
|
|
changelog = "https://github.com/huashengdun/webssh/releases/tag/v${version}";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ davidtwco ];
|
|
broken = stdenv.isDarwin;
|
|
};
|
|
}
|