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-10-06 11:56:19 +01:00
version = "0.5.3";
2016-12-23 23:53:15 +00:00
src = fetchPypi {
inherit pname version;
2018-10-06 11:56:19 +01:00
sha256 = "79f7b4286be773c46914df0201dabaf92717a9c06e341e0c420603b2dd31c6bf";
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
};
}