Files
nixpkgs/pkgs/development/python-modules/netmiko/default.nix
T
Martin Weinelt 0643a426a0 python3Packages.netmiko: 4.5.0 -> 4.6.0
https://github.com/ktbyers/netmiko/releases/tag/v4.6.0

This commit was automatically generated using update-python-libraries.
2025-08-09 19:01:55 +02:00

52 lines
966 B
Nix

{
lib,
buildPythonPackage,
fetchPypi,
ntc-templates,
paramiko,
poetry-core,
pyserial,
pyyaml,
rich,
ruamel-yaml,
scp,
textfsm,
}:
buildPythonPackage rec {
pname = "netmiko";
version = "4.6.0";
pyproject = true;
src = fetchPypi {
inherit pname version;
hash = "sha256-lwG7LBoV6y6AdMsuKMoAfGm5+lKWG4O5jHV+rWuA3u8=";
};
build-system = [ poetry-core ];
dependencies = [
ntc-templates
paramiko
pyserial
pyyaml
rich
ruamel-yaml
scp
textfsm
];
# Tests require closed-source pyats and genie packages
doCheck = false;
pythonImportsCheck = [ "netmiko" ];
meta = with lib; {
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}";
license = licenses.mit;
maintainers = [ maintainers.astro ];
};
}