From 547cd3cfd122c8ac59f50b2d4e7704087fce2232 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Sun, 23 Apr 2023 00:29:01 +0200 Subject: [PATCH] python310Packages.pyroute2: 0.7.5 -> 0.7.7 Changelog: https://github.com/svinota/pyroute2/blob/0.7.7/CHANGELOG.rst --- .../python-modules/pyroute2/default.nix | 23 ++++++++++--------- 1 file changed, 12 insertions(+), 11 deletions(-) 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;