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.

Changed files
+2 -11
pkgs
development
python-modules
netmiko
+2 -11
pkgs/development/python-modules/netmiko/default.nix
···
paramiko,
poetry-core,
pyserial,
-
pythonOlder,
pyyaml,
rich,
ruamel-yaml,
···
buildPythonPackage rec {
pname = "netmiko";
-
version = "4.5.0";
+
version = "4.6.0";
pyproject = true;
-
disabled = pythonOlder "3.9";
-
src = fetchPypi {
inherit pname version;
-
hash = "sha256-29/CC2yq+OXXpXC7G0Kia5pvjYI06R9cZfTb/gwOT1A=";
+
hash = "sha256-lwG7LBoV6y6AdMsuKMoAfGm5+lKWG4O5jHV+rWuA3u8=";
};
-
-
postPatch = ''
-
substituteInPlace pyproject.toml \
-
--replace-fail "poetry>=1.6.1" "poetry-core" \
-
--replace-fail "poetry.masonry.api" "poetry.core.masonry.api"
-
'';
build-system = [ poetry-core ];