mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-08-27 02:34:53 +00:00
36 lines
686 B
Nix
36 lines
686 B
Nix
{
|
|
buildPythonPackage,
|
|
setuptools,
|
|
nftables,
|
|
}:
|
|
|
|
buildPythonPackage (finalAttrs: {
|
|
pname = "nftables";
|
|
inherit (nftables) version src;
|
|
pyproject = true;
|
|
|
|
__structuredAttrs = true;
|
|
|
|
postPatch = ''
|
|
substituteInPlace "src/nftables.py" \
|
|
--replace-fail 'NFTABLES_VERSION = "0.1"' 'NFTABLES_VERSION = "${finalAttrs.version}"' \
|
|
--replace-fail "libnftables.so.1" "${nftables}/lib/libnftables.so.1"
|
|
'';
|
|
|
|
setSourceRoot = "sourceRoot=$(echo */py)";
|
|
|
|
build-system = [ setuptools ];
|
|
|
|
pythonImportsCheck = [ "nftables" ];
|
|
|
|
meta = {
|
|
inherit (nftables.meta)
|
|
description
|
|
homepage
|
|
license
|
|
platforms
|
|
maintainers
|
|
;
|
|
};
|
|
})
|