python3.pkgs.beetcamp: move beets dependency to nativeBuildInputs

This will make it possible to use `beetcamp` without setting
`dontUsePythonCatchConflicts = true` in an override.

See: https://github.com/NixOS/nixpkgs/pull/471166#discussion_r2642534939
This commit is contained in:
Rebecca Turner
2025-12-24 12:13:11 -08:00
parent 757494342b
commit a50d2a7f7c
@@ -40,12 +40,15 @@ buildPythonPackage {
];
dependencies = [
beets
httpx
packaging
pycountry
];
nativeBuildInputs = [
beets
];
nativeCheckInputs = [
writableTmpDirAsHomeHook
pytestCheckHook