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
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 26 additions and 0 deletions

View file

@ -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 ];
};
}

View file

@ -27048,6 +27048,8 @@ in
webmacs = libsForQt5.callPackage ../applications/networking/browsers/webmacs {};
webssh = with python3Packages; toPythonApplication webssh;
webtorrent_desktop = callPackage ../applications/video/webtorrent_desktop {};
wrapWeechat = callPackage ../applications/networking/irc/weechat/wrapper.nix { };

View file

@ -8713,6 +8713,8 @@ in {
websockify = callPackage ../development/python-modules/websockify { };
webssh = callPackage ../development/python-modules/webssh { };
webtest = callPackage ../development/python-modules/webtest { };
webthing = callPackage ../development/python-modules/webthing { };