2021-01-25 08:26:54 +00:00
|
|
|
{lib, buildPythonPackage, fetchPypi}:
|
2016-12-23 23:53:15 +00:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
2017-05-27 10:25:35 +01:00
|
|
|
pname = "pyroute2";
|
2020-10-03 10:14:20 +01:00
|
|
|
version = "0.5.14";
|
2016-12-23 23:53:15 +00:00
|
|
|
|
2018-06-23 14:27:58 +01:00
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2020-10-03 10:14:20 +01:00
|
|
|
sha256 = "774c5ecf05fe40f0f601a7ab33c19ca0b24f00bf4a094e58deaa5333b7ca49b5";
|
2016-12-23 23:53:15 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
# requires root priviledges
|
|
|
|
doCheck = false;
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2016-12-23 23:53:15 +00:00
|
|
|
description = "Python Netlink library";
|
2020-03-25 14:52:22 +00:00
|
|
|
homepage = "https://github.com/svinota/pyroute2";
|
2016-12-23 23:53:15 +00:00
|
|
|
license = licenses.asl20;
|
|
|
|
maintainers = [maintainers.mic92];
|
2019-02-17 13:00:33 +00:00
|
|
|
platforms = platforms.unix;
|
2016-12-23 23:53:15 +00:00
|
|
|
};
|
|
|
|
}
|