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";
version = "0.4.21";
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";
sha256 = "7afad28ee0a0f3e7c34adaa9f953d00560ed9910203e93f107833b6e8d151171";
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
};
}