diff --git a/pkgs/development/python-modules/pyroute2/default.nix b/pkgs/development/python-modules/pyroute2/default.nix index 908fb0c8a0ae..a9d95e8e45a5 100644 --- a/pkgs/development/python-modules/pyroute2/default.nix +++ b/pkgs/development/python-modules/pyroute2/default.nix @@ -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;