Files
nixpkgs/pkgs/development/python-modules/beets-filetote/default.nix
T
Martin Weinelt 0e1fe10283 python3Packages.beets-filetote: 1.1.0 -> 1.1.1
https://github.com/gtronset/beets-filetote/blob/v1.1.1/CHANGELOG.md

This commit was automatically generated using update-python-libraries.
2026-02-01 16:42:20 +01:00

87 lines
1.6 KiB
Nix

{
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.1";
pyproject = true;
src = fetchFromGitHub {
owner = "gtronset";
repo = "beets-filetote";
tag = "v${version}";
hash = "sha256-NsYBsP60SiCfQ63C4WMkshyreFqOSmx3LP5Gwq6ECF0=";
};
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;
};
}