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

24 lines
585 B
Nix
Raw Normal View History

2016-12-24 00:53:15 +01:00
{stdenv, buildPythonPackage, fetchurl}:
buildPythonPackage rec {
pname = "pyroute2";
2017-06-01 18:12:53 +02:00
version = "0.4.15";
name = "${pname}-${version}";
2016-12-24 00:53:15 +01:00
src = fetchurl {
url = "mirror://pypi/p/pyroute2/${name}.tar.gz";
2017-06-01 18:12:53 +02:00
sha256 = "273530e78261ac5e9e2985f12fad9e6c4231f8e49b8c285c05a23dcda5afce58";
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.linux;
2016-12-24 00:53:15 +01:00
};
}