webssh: init at 1.5.3 (#122559)

Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
This commit is contained in:
David Wood
2021-05-18 14:29:19 +01:00
committed by GitHub
parent 30d16a42df
commit 23b30e11a0
3 changed files with 26 additions and 0 deletions
@@ -0,0 +1,22 @@
{ lib, buildPythonPackage, fetchPypi, tornado, paramiko }:
buildPythonPackage rec {
pname = "webssh";
version = "1.5.3";
src = fetchPypi {
inherit pname version;
hash = "sha256-Au6PE8jYm8LkEp0B1ymW//ZkrkcV0BauwufQmrHLEU4=";
};
propagatedBuildInputs = [ tornado paramiko ];
pythonImportsCheck = [ "webssh" ];
meta = with lib; {
homepage = "https://github.com/huashengdun/webssh/";
description = "Web based ssh client";
license = licenses.mit;
maintainers = with maintainers; [ davidtwco ];
};
}