Commit a50d2a7f authored by Rebecca Turner's avatar Rebecca Turner
Browse files

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
parent 75749434
Loading
Loading
Loading
Loading
+4 −1
Original line number Diff line number Diff line
@@ -40,12 +40,15 @@ buildPythonPackage {
  ];

  dependencies = [
    beets
    httpx
    packaging
    pycountry
  ];

  nativeBuildInputs = [
    beets
  ];

  nativeCheckInputs = [
    writableTmpDirAsHomeHook
    pytestCheckHook