mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-19 00:08:32 +01:00
Merge pull request #227695 from fabaff/pyroute2-bump
python310Packages.pyroute2: 0.7.5 -> 0.7.7
This commit is contained in:
commit
c767200ef4
1 changed files with 12 additions and 11 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue