Merge pull request #227695 from fabaff/pyroute2-bump

python310Packages.pyroute2: 0.7.5 -> 0.7.7
This commit is contained in:
Martin Weinelt 2023-04-23 11:43:23 +02:00 committed by GitHub
commit c767200ef4
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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;