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

24 lines
584 B
Nix
Raw Normal View History

2016-12-23 23:53:15 +00:00
{stdenv, buildPythonPackage, fetchurl}:
buildPythonPackage rec {
pname = "pyroute2";
2018-05-28 13:19:11 +01:00
version = "0.5.1";
name = "${pname}-${version}";
2016-12-23 23:53:15 +00:00
src = fetchurl {
url = "mirror://pypi/p/pyroute2/${name}.tar.gz";
2018-05-28 13:19:11 +01:00
sha256 = "e69dc81dc3f10ccb33186ddcce910e116b4e77304e93af4092567130bcd6df5c";
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];
platforms = platforms.linux;
2016-12-23 23:53:15 +00:00
};
}