3e2acf8aff
GitOrigin-RevId: d42cd445dde587e9a993cd9434cb43da07c4c5de
22 lines
539 B
Nix
22 lines
539 B
Nix
{ 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 ];
|
|
};
|
|
}
|