mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-03 20:33:21 +00:00
55 lines
1.0 KiB
Nix
55 lines
1.0 KiB
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchPypi,
|
|
|
|
# build-system
|
|
poetry-core,
|
|
|
|
# dependencies
|
|
ntc-templates,
|
|
paramiko,
|
|
pyserial,
|
|
pyyaml,
|
|
scp,
|
|
textfsm,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "netmiko";
|
|
version = "4.3.0";
|
|
pyproject = true;
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
hash = "sha256-2pD2798ztBQOts1/InJ3PCzhRPp0rDTV7KwbTUYH8fs=";
|
|
};
|
|
|
|
postPatch = ''
|
|
substituteInPlace pyproject.toml \
|
|
--replace "poetry==1.3.2" "poetry-core" \
|
|
--replace "poetry.masonry.api" "poetry.core.masonry.api"
|
|
'';
|
|
|
|
nativeBuildInputs = [ poetry-core ];
|
|
|
|
propagatedBuildInputs = [
|
|
ntc-templates
|
|
paramiko
|
|
pyserial
|
|
pyyaml
|
|
scp
|
|
textfsm
|
|
];
|
|
|
|
# tests require closed-source pyats and genie packages
|
|
doCheck = false;
|
|
|
|
meta = with lib; {
|
|
description = "Multi-vendor library to simplify Paramiko SSH connections to network devices";
|
|
homepage = "https://github.com/ktbyers/netmiko/";
|
|
license = licenses.mit;
|
|
maintainers = [ maintainers.astro ];
|
|
};
|
|
}
|