{ lib, fetchFromGitHub, buildPythonPackage, # build-system poetry-core, # nativeBuildInputs beets-minimal, # tests pytestCheckHook, beets-audible, mediafile, pytest, reflink, toml, typeguard, writableTmpDirAsHomeHook, }: buildPythonPackage rec { pname = "beets-filetote"; version = "1.1.0"; pyproject = true; src = fetchFromGitHub { owner = "gtronset"; repo = "beets-filetote"; tag = "v${version}"; hash = "sha256-5o0Hif0dNavYRH1pa1ZPTnOvk9VPXCU/Lqpg2rKzU/I="; }; postPatch = '' substituteInPlace pyproject.toml --replace-fail "poetry-core<2.0.0" "poetry-core" ''; build-system = [ poetry-core ]; nativeBuildInputs = [ beets-minimal ]; dependencies = [ mediafile reflink toml typeguard ]; nativeCheckInputs = [ pytestCheckHook beets-audible mediafile reflink toml typeguard writableTmpDirAsHomeHook ]; pytestFlags = [ # This is the same as: # -r fEs "-rfEs" ]; disabledTestPaths = [ "tests/test_cli_operation.py" "tests/test_pruning.py" "tests/test_version.py" ]; meta = { description = "Beets plugin to move non-music files during the import process"; homepage = "https://github.com/gtronset/beets-filetote"; changelog = "https://github.com/gtronset/beets-filetote/blob/${src.tag}/CHANGELOG.md"; maintainers = with lib.maintainers; [ dansbandit ]; license = lib.licenses.mit; inherit (beets-minimal.meta) platforms; # https://github.com/gtronset/beets-filetote/issues/211 broken = true; }; }