blob: f010993a90834006fef591dd1ecb1e3ded372bc1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
{
buildPythonPackage,
setuptools,
nftables,
}:
buildPythonPackage {
pname = "nftables";
inherit (nftables) version src;
pyproject = true;
postPatch = ''
substituteInPlace "src/nftables.py" \
--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
;
};
}
|