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

23 lines
530 B
Nix
Raw Normal View History

2018-06-23 15:27:58 +02:00
{stdenv, buildPythonPackage, fetchPypi}:
2016-12-24 00:53:15 +01:00
buildPythonPackage rec {
2017-05-27 11:25:35 +02:00
pname = "pyroute2";
2020-10-03 09:14:20 +00:00
version = "0.5.14";
2016-12-24 00:53:15 +01:00
2018-06-23 15:27:58 +02:00
src = fetchPypi {
inherit pname version;
2020-10-03 09:14:20 +00:00
sha256 = "774c5ecf05fe40f0f601a7ab33c19ca0b24f00bf4a094e58deaa5333b7ca49b5";
2016-12-24 00:53:15 +01:00
};
# requires root priviledges
doCheck = false;
meta = with stdenv.lib; {
description = "Python Netlink library";
2020-03-25 14:52:22 +00:00
homepage = "https://github.com/svinota/pyroute2";
2016-12-24 00:53:15 +01:00
license = licenses.asl20;
maintainers = [maintainers.mic92];
platforms = platforms.unix;
2016-12-24 00:53:15 +01:00
};
}