Skip to content

Commit 412bc29

Browse files
committed
nixos-anywhere-pxe packege: add missing dependency (netaddr)
1 parent cf48c8c commit 412bc29

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

src/nixos_anywhere_pxe/default.nix

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,14 @@ let
2727
nativeBuildInputs = [
2828
python3.pkgs.setuptools
2929
];
30+
propagatedBuildInputs = [
31+
python3.pkgs.netaddr
32+
];
3033
passthru.tests = { inherit nixos-anywhere-pxe-mypy; };
3134
passthru.devDependencies = devDependencies;
35+
pythonImportsCheck = [
36+
"netaddr"
37+
];
3238
};
3339

3440
checkPython = python3.withPackages (_ps: devDependencies);

0 commit comments

Comments
 (0)