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

22 lines
524 B
Nix
Raw Normal View History

2016-12-23 23:53:15 +00:00
{stdenv, buildPythonPackage, fetchurl}:
buildPythonPackage rec {
2017-02-19 08:56:31 +00:00
name = "pyroute2-0.4.13";
2016-12-23 23:53:15 +00:00
src = fetchurl {
url = "mirror://pypi/p/pyroute2/${name}.tar.gz";
2017-02-19 08:56:31 +00:00
sha256 = "0f8a1ihxc1r78m6dqwhks2vdp4vwwbw72mbv88v70qmkb0pxgwwk";
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];
platform = platforms.linux;
};
}