depot/third_party/nixpkgs/pkgs/development/python-modules/netmiko/default.nix
Default email e7ec2969af Project import generated by Copybara.
GitOrigin-RevId: 9b19f5e77dd906cb52dade0b7bd280339d2a1f3d
2024-01-13 09:15:51 +01:00

56 lines
1,020 B
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 ];
};
}