webssh: init at 1.5.3 (#122559)
Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
This commit is contained in:
parent
30d16a42df
commit
23b30e11a0
22
pkgs/development/python-modules/webssh/default.nix
Normal file
22
pkgs/development/python-modules/webssh/default.nix
Normal 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 ];
|
||||||
|
};
|
||||||
|
}
|
@ -27048,6 +27048,8 @@ in
|
|||||||
|
|
||||||
webmacs = libsForQt5.callPackage ../applications/networking/browsers/webmacs {};
|
webmacs = libsForQt5.callPackage ../applications/networking/browsers/webmacs {};
|
||||||
|
|
||||||
|
webssh = with python3Packages; toPythonApplication webssh;
|
||||||
|
|
||||||
webtorrent_desktop = callPackage ../applications/video/webtorrent_desktop {};
|
webtorrent_desktop = callPackage ../applications/video/webtorrent_desktop {};
|
||||||
|
|
||||||
wrapWeechat = callPackage ../applications/networking/irc/weechat/wrapper.nix { };
|
wrapWeechat = callPackage ../applications/networking/irc/weechat/wrapper.nix { };
|
||||||
|
@ -8713,6 +8713,8 @@ in {
|
|||||||
|
|
||||||
websockify = callPackage ../development/python-modules/websockify { };
|
websockify = callPackage ../development/python-modules/websockify { };
|
||||||
|
|
||||||
|
webssh = callPackage ../development/python-modules/webssh { };
|
||||||
|
|
||||||
webtest = callPackage ../development/python-modules/webtest { };
|
webtest = callPackage ../development/python-modules/webtest { };
|
||||||
|
|
||||||
webthing = callPackage ../development/python-modules/webthing { };
|
webthing = callPackage ../development/python-modules/webthing { };
|
||||||
|
Loading…
Reference in New Issue
Block a user