2016-12-23 23:53:15 +00:00
|
|
|
{stdenv, buildPythonPackage, fetchurl}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
2017-05-27 10:25:35 +01:00
|
|
|
pname = "pyroute2";
|
2018-05-28 13:19:11 +01:00
|
|
|
version = "0.5.1";
|
2017-05-27 10:25:35 +01:00
|
|
|
name = "${pname}-${version}";
|
2016-12-23 23:53:15 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://pypi/p/pyroute2/${name}.tar.gz";
|
2018-05-28 13:19:11 +01:00
|
|
|
sha256 = "e69dc81dc3f10ccb33186ddcce910e116b4e77304e93af4092567130bcd6df5c";
|
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];
|
2017-05-03 00:14:03 +01:00
|
|
|
platforms = platforms.linux;
|
2016-12-23 23:53:15 +00:00
|
|
|
};
|
|
|
|
}
|