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

24 lines
585 B
Nix
Raw Normal View History

2016-12-24 00:53:15 +01:00
{stdenv, buildPythonPackage, fetchurl}:
buildPythonPackage rec {
2017-05-27 11:25:35 +02:00
pname = "pyroute2";
2017-06-19 13:43:19 +02:00
version = "0.4.16";
2017-05-27 11:25:35 +02:00
name = "${pname}-${version}";
2016-12-24 00:53:15 +01:00
src = fetchurl {
url = "mirror://pypi/p/pyroute2/${name}.tar.gz";
2017-06-19 13:43:19 +02:00
sha256 = "5c692efd83369cb44086572b3e1e95ab11f1bc516a89c8ca2429795a789f32a9";
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];
2017-05-02 19:14:03 -04:00
platforms = platforms.linux;
2016-12-24 00:53:15 +01:00
};
}