2018-06-23 14:27:58 +01:00
|
|
|
{stdenv, buildPythonPackage, fetchPypi}:
|
2016-12-23 23:53:15 +00:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
2017-05-27 10:25:35 +01:00
|
|
|
pname = "pyroute2";
|
2019-05-30 07:49:52 +01:00
|
|
|
version = "0.5.6";
|
2016-12-23 23:53:15 +00:00
|
|
|
|
2018-06-23 14:27:58 +01:00
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2019-05-30 07:49:52 +01:00
|
|
|
sha256 = "deae0e6191a04c3ee213c6fae6ed779602ef5da5ca5e2fa533f27bc04326bfbe";
|
2016-12-23 23:53:15 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
# requires root priviledges
|
|
|
|
doCheck = false;
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Python Netlink library";
|
|
|
|
homepage = https://github.com/svinota/pyroute2;
|
|
|
|
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
|
|
|
};
|
|
|
|
}
|