python310Packages.pyroute2: 0.7.5 -> 0.7.7

Changelog: https://github.com/svinota/pyroute2/blob/0.7.7/CHANGELOG.rst
This commit is contained in:
Fabian Affolter 2023-04-23 00:29:01 +02:00
parent 2282f5aa1d
commit 547cd3cfd1

View File

@ -9,14 +9,14 @@
buildPythonPackage rec {
pname = "pyroute2";
version = "0.7.5";
version = "0.7.7";
format = "pyproject";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
hash = "sha256-Husvo+JUM1ffCpN6cAxbZ2GyqlKEQArtRiBkcP5cC+U=";
hash = "sha256-j0mxWXwPbjD/W2wdqh17L0FP2eREI8IusLL9cuySGAY=";
};
nativeBuildInputs = [
@ -34,20 +34,21 @@ buildPythonPackage rec {
pythonImportsCheck = [
"pyroute2"
"pr2modules.common"
"pr2modules.config"
"pr2modules.ethtool"
"pr2modules.ipdb"
"pr2modules.ipset"
"pr2modules.ndb"
"pr2modules.nftables"
"pr2modules.nslink"
"pr2modules.protocols"
"pyroute2.common"
"pyroute2.config"
"pyroute2.ethtool"
"pyroute2.ipdb"
"pyroute2.ipset"
"pyroute2.ndb"
"pyroute2.nftables"
"pyroute2.nslink"
"pyroute2.protocols"
];
meta = with lib; {
description = "Python Netlink library";
homepage = "https://github.com/svinota/pyroute2";
changelog = "https://github.com/svinota/pyroute2/blob/${version}/CHANGELOG.rst";
license = licenses.asl20;
maintainers = with maintainers; [ fab mic92 ];
platforms = platforms.unix;