36 lines
692 B
Nix
36 lines
692 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
, pyroute2-core
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "pyroute2-nftables";
|
|
version = "0.6.5";
|
|
|
|
src = fetchPypi {
|
|
pname = "pyroute2.nftables";
|
|
inherit version;
|
|
sha256 = "sha256-sUVaY6PvwFDRCNVQ0cr9AR7d7W6JTZnnvfoC1ZK/bxY=";
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
pyroute2-core
|
|
];
|
|
|
|
# pyroute2 sub-modules have no tests
|
|
doCheck = false;
|
|
|
|
pythonImportsCheck = [
|
|
"pr2modules.nftables"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Nftables module for pyroute2";
|
|
homepage = "https://github.com/svinota/pyroute2";
|
|
license = licenses.asl20;
|
|
maintainers = with maintainers; [ fab ];
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|