nixpkgs/pkgs/development/python-modules/pyroute2/default.nix

23 lines
528 B
Nix
Raw Normal View History

{stdenv, buildPythonPackage, fetchPypi}:
2016-12-23 23:53:15 +00:00
buildPythonPackage rec {
pname = "pyroute2";
2018-06-21 05:37:18 +00:00
version = "0.5.2";
2016-12-23 23:53:15 +00:00
src = fetchPypi {
inherit pname version;
2018-06-21 05:37:18 +00:00
sha256 = "42bf74495d95a0196a74dd171357f660175aba2bfc23f9b5f63e3830ccbef9ac";
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];
platforms = platforms.linux;
2016-12-23 23:53:15 +00:00
};
}