1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-18 10:56:53 +00:00
nixpkgs/pkgs/development/python-modules/pyroute2/default.nix

24 lines
585 B
Nix
Raw Normal View History

2016-12-23 23:53:15 +00:00
{stdenv, buildPythonPackage, fetchurl}:
buildPythonPackage rec {
pname = "pyroute2";
2017-07-28 15:49:08 +01:00
version = "0.4.18";
name = "${pname}-${version}";
2016-12-23 23:53:15 +00:00
src = fetchurl {
url = "mirror://pypi/p/pyroute2/${name}.tar.gz";
2017-07-28 15:49:08 +01:00
sha256 = "bdcff9f598ff4dda7420675ee387426cd9cc79d795ea73eb684a4314d4b00b9e";
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
};
}