summary refs log tree commit diff
path: root/pkgs/development/python-modules/pyroute2/default.nix
blob: 3563edce792e590beffc4b9c3d7dc4f8c5caeb10 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{stdenv, buildPythonPackage, fetchPypi}:

buildPythonPackage rec {
  pname = "pyroute2";
  version = "0.5.7";

  src = fetchPypi {
    inherit pname version;
    sha256 = "963fce07da2841456d39e3b932b071f6de28d23dadfae014022d67a752916f98";
  };

  # 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;
  };
}