python310Packages.ssh-mitm: 2.1.0 -> 3.0.1 (#207694)

This commit is contained in:
Fabian Affolter 2022-12-25 19:48:17 +01:00 committed by GitHub
parent 8118afce6d
commit b3a5cb1904
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,23 +1,21 @@
{ lib { lib
, argcomplete
, buildPythonPackage , buildPythonPackage
, fetchFromGitHub , fetchFromGitHub
, pythonOlder , pythonOlder
, colored , colored
, enhancements
, packaging , packaging
, paramiko , paramiko
, pytz , pytz
, pyyaml , pyyaml
, requests
, rich , rich
, sshpubkeys , sshpubkeys
, typeguard
, pytestCheckHook , pytestCheckHook
}: }:
buildPythonPackage rec { buildPythonPackage rec {
pname = "ssh-mitm"; pname = "ssh-mitm";
version = "2.1.0"; version = "3.0.1";
format = "setuptools"; format = "setuptools";
disabled = pythonOlder "3.7"; disabled = pythonOlder "3.7";
@ -26,20 +24,18 @@ buildPythonPackage rec {
owner = pname; owner = pname;
repo = pname; repo = pname;
rev = "refs/tags/${version}"; rev = "refs/tags/${version}";
hash = "sha256-DMXzDgSt1p3ZNGrXnSr79KH33SJNN8U4/94Hoz7Rs+I="; hash = "sha256-bFxpgzomtcFGf0LfLUR05y3+/8DNhND6EKAmCZcYb5E=";
}; };
propagatedBuildInputs = [ propagatedBuildInputs = [
argcomplete
colored colored
enhancements
packaging packaging
paramiko paramiko
pytz pytz
pyyaml pyyaml
requests
rich rich
sshpubkeys sshpubkeys
typeguard
]; ];
# Module has no tests # Module has no tests
@ -52,7 +48,8 @@ buildPythonPackage rec {
meta = with lib; { meta = with lib; {
description = "Tool for SSH security audits"; description = "Tool for SSH security audits";
homepage = "https://github.com/ssh-mitm/ssh-mitm"; homepage = "https://github.com/ssh-mitm/ssh-mitm";
license = licenses.lgpl3Only; changelog = "https://github.com/ssh-mitm/ssh-mitm/blob/${version}/CHANGELOG.md";
license = licenses.gpl3Only;
maintainers = with maintainers; [ fab ]; maintainers = with maintainers; [ fab ];
}; };
} }