From a50d2a7f7ccaa932926dfe28c0f5fdb121ac7c94 Mon Sep 17 00:00:00 2001 From: Rebecca Turner Date: Mon, 15 Dec 2025 13:59:07 -0800 Subject: [PATCH] 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 --- pkgs/development/python-modules/beetcamp/default.nix | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/pkgs/development/python-modules/beetcamp/default.nix b/pkgs/development/python-modules/beetcamp/default.nix index 1f6361274df6..5122d9932d0d 100644 --- a/pkgs/development/python-modules/beetcamp/default.nix +++ b/pkgs/development/python-modules/beetcamp/default.nix @@ -40,12 +40,15 @@ buildPythonPackage { ]; dependencies = [ - beets httpx packaging pycountry ]; + nativeBuildInputs = [ + beets + ]; + nativeCheckInputs = [ writableTmpDirAsHomeHook pytestCheckHook