Merge pull request #202509 from r-ryantm/auto-update/webssh

webssh: 1.6.0 -> 1.6.1
This commit is contained in:
Mario Rodas 2022-11-29 20:20:33 -05:00 committed by GitHub
commit 4ecb38bcb1
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,5 +1,5 @@
{ stdenv
, lib
{ lib
, stdenv
, buildPythonPackage
, fetchPypi
, paramiko
@ -9,12 +9,12 @@
buildPythonPackage rec {
pname = "webssh";
version = "1.6.0";
version = "1.6.1";
format = "setuptools";
src = fetchPypi {
inherit pname version;
hash = "sha256-yqjwahh2METXD83geTGt5sUL+vmxbrYxj4KtwTxbD94=";
hash = "sha256-g3RRQUWbjHRaZRVekmETcrHYeVIIpeteCCh7o28jBLY=";
};
propagatedBuildInputs = [
@ -36,10 +36,11 @@ buildPythonPackage rec {
];
meta = with lib; {
broken = stdenv.isDarwin;
description = "Web based SSH client";
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.isDarwin;
};
}