1{ lib, buildPythonPackage, fetchPypi, tornado, paramiko }:
2
3buildPythonPackage rec {
4 pname = "webssh";
5 version = "1.5.3";
6
7 src = fetchPypi {
8 inherit pname version;
9 hash = "sha256-Au6PE8jYm8LkEp0B1ymW//ZkrkcV0BauwufQmrHLEU4=";
10 };
11
12 propagatedBuildInputs = [ tornado paramiko ];
13
14 pythonImportsCheck = [ "webssh" ];
15
16 meta = with lib; {
17 homepage = "https://github.com/huashengdun/webssh/";
18 description = "Web based ssh client";
19 license = licenses.mit;
20 maintainers = with maintainers; [ davidtwco ];
21 };
22}