2021-04-13 21:39:00 +02:00
|
|
|
{ lib
|
|
|
|
, buildPythonPackage
|
|
|
|
, fetchPypi
|
|
|
|
}:
|
2016-12-24 00:53:15 +01:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
2017-05-27 11:25:35 +02:00
|
|
|
pname = "pyroute2";
|
2021-04-13 08:55:25 +02:00
|
|
|
version = "0.5.18";
|
2016-12-24 00:53:15 +01:00
|
|
|
|
2018-06-23 15:27:58 +02:00
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2021-04-13 08:55:25 +02:00
|
|
|
sha256 = "sha256-CKxAytUsC7Lg8gCHUgWZqpH8zgsiHdJukEIzBCiBC8U=";
|
2016-12-24 00:53:15 +01:00
|
|
|
};
|
|
|
|
|
2021-04-13 21:39:00 +02:00
|
|
|
# Requires root privileges, https://github.com/svinota/pyroute2/issues/778
|
2016-12-24 00:53:15 +01:00
|
|
|
doCheck = false;
|
|
|
|
|
2021-04-13 21:39:00 +02:00
|
|
|
pythonImportsCheck = [ "pyroute2" ];
|
|
|
|
|
2021-01-11 08:54:33 +01:00
|
|
|
meta = with lib; {
|
2016-12-24 00:53:15 +01:00
|
|
|
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;
|
2021-04-13 21:39:00 +02:00
|
|
|
maintainers = with maintainers; [ mic92 ];
|
2019-02-17 14:00:33 +01:00
|
|
|
platforms = platforms.unix;
|
2016-12-24 00:53:15 +01:00
|
|
|
};
|
|
|
|
}
|