Merge pull request #257708 from fabaff/ntc-templates-bump

python311Packages.ntc-templates: 3.2.0 -> 3.5.0
This commit is contained in:
Fabian Affolter 2023-09-28 00:39:21 +02:00 committed by GitHub
commit 1c29ab6a0b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -11,16 +11,16 @@
buildPythonPackage rec {
pname = "ntc-templates";
version = "3.2.0";
version = "3.5.0";
format = "pyproject";
disabled = pythonOlder "3.6";
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "networktocode";
repo = pname;
rev = "refs/tags/v${version}";
hash = "sha256-uEGl245tmc+W/9G+IclSNu76VTJ7w3zw6BQkhmGgEnY=";
hash = "sha256-FhKMDSAW+MifAy2EnHePbSfY56rdK1SfOe85bFte6ps=";
};
nativeBuildInputs = [
@ -46,6 +46,7 @@ buildPythonPackage rec {
meta = with lib; {
description = "TextFSM templates for parsing show commands of network devices";
homepage = "https://github.com/networktocode/ntc-templates";
changelog = "https://github.com/networktocode/ntc-templates/releases/tag/v${version}";
license = licenses.asl20;
maintainers = with maintainers; [ hexa ];
};