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

23 lines
527 B
Nix
Raw Normal View History

{stdenv, buildPythonPackage, fetchPypi}:
2016-12-24 00:53:15 +01:00
buildPythonPackage rec {
pname = "pyroute2";
2019-04-16 19:15:39 +02:00
version = "0.5.5";
2016-12-24 00:53:15 +01:00
src = fetchPypi {
inherit pname version;
2019-04-16 19:15:39 +02:00
sha256 = "ad679a91d453fe8426c4076d0da3a67265e5ccfe641879d75c9bc7660d075dfa";
2016-12-24 00:53:15 +01: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.unix;
2016-12-24 00:53:15 +01:00
};
}