fixup! python3Packages.netmiko: 4.6.0 -> 4.7.0

This commit is contained in:
Fabian Affolter
2026-08-25 23:38:56 +02:00
parent 4c8b3c949a
commit 5ce51871f1

View File

@@ -13,16 +13,18 @@
textfsm,
}:
buildPythonPackage rec {
buildPythonPackage (finalAttrs: {
pname = "netmiko";
version = "4.7.0";
pyproject = true;
src = fetchPypi {
inherit pname version;
inherit (finalAttrs) pname version;
hash = "sha256-lM97/l2u0dBYREzhY34QF33yL5A2g6U9H77kdVNIjGU=";
};
pythonRelaxDeps = [ "paramiko" ];
build-system = [ poetry-core ];
dependencies = [
@@ -44,8 +46,8 @@ buildPythonPackage rec {
meta = {
description = "Multi-vendor library to simplify Paramiko SSH connections to network devices";
homepage = "https://github.com/ktbyers/netmiko/";
changelog = "https://github.com/ktbyers/netmiko/releases/tag/v${version}";
changelog = "https://github.com/ktbyers/netmiko/releases/tag/v${finalAttrs.version}";
license = lib.licenses.mit;
maintainers = [ lib.maintainers.astro ];
};
}
})