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

23 lines
530 B
Nix
Raw Normal View History

{stdenv, buildPythonPackage, fetchPypi}:
2016-12-23 23:53:15 +00:00
buildPythonPackage rec {
pname = "pyroute2";
2020-07-31 09:56:45 +01:00
version = "0.5.13";
2016-12-23 23:53:15 +00:00
src = fetchPypi {
inherit pname version;
2020-07-31 09:56:45 +01:00
sha256 = "518365f3313e73b0f024b9fa7a580b29bfa2fe2c5230be0bc69c068bbf6637e9";
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";
2016-12-23 23:53:15 +00:00
license = licenses.asl20;
maintainers = [maintainers.mic92];
platforms = platforms.unix;
2016-12-23 23:53:15 +00:00
};
}