blob: f7166b86e459dfe5c7b562237feb0ab446053751 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
|
{
lib,
stdenv,
buildPythonPackage,
fetchPypi,
paramiko,
pytestCheckHook,
tornado,
}:
buildPythonPackage rec {
pname = "webssh";
version = "1.6.2";
format = "setuptools";
src = fetchPypi {
inherit pname version;
hash = "sha256-mRestRJukaf7ti3vIs/MM/R+zpGmK551j5HAM2chBsE=";
};
patches = [
./remove-typo-in-test-case.patch
];
propagatedBuildInputs = [
paramiko
tornado
];
nativeCheckInputs = [ pytestCheckHook ];
pythonImportsCheck = [ "webssh" ];
meta = with lib; {
description = "Web based SSH client";
mainProgram = "wssh";
homepage = "https://github.com/huashengdun/webssh/";
changelog = "https://github.com/huashengdun/webssh/releases/tag/v${version}";
license = licenses.mit;
maintainers = with maintainers; [ davidtwco ];
broken = stdenv.hostPlatform.isDarwin;
};
}
|