Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
48 lines
972 B
Nix
48 lines
972 B
Nix
{
|
|
beets,
|
|
fetchFromGitHub,
|
|
lib,
|
|
nix-update-script,
|
|
python3Packages,
|
|
}:
|
|
python3Packages.buildPythonApplication rec {
|
|
pname = "beets-audible";
|
|
version = "1.0.2";
|
|
pyproject = true;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "Neurrone";
|
|
repo = "beets-audible";
|
|
rev = "v${version}";
|
|
hash = "sha256-6rf8U63SW+gwfT7ZdN/ymYKHRs0HSMDTP2ZBfULLsJs=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
beets
|
|
];
|
|
|
|
pythonRelaxDeps = true;
|
|
|
|
build-system = with python3Packages; [
|
|
hatchling
|
|
];
|
|
|
|
dependencies = with python3Packages; [
|
|
markdownify
|
|
natsort
|
|
tldextract
|
|
];
|
|
|
|
passthru = {
|
|
updateScript = nix-update-script { };
|
|
};
|
|
|
|
meta = {
|
|
description = "Beets-audible: Organize Your Audiobook Collection With Beets";
|
|
homepage = "https://github.com/Neurrone/beets-audible";
|
|
platforms = with lib.platforms; linux ++ darwin ++ windows;
|
|
license = with lib.licenses; [ mit ];
|
|
maintainers = with lib.maintainers; [ jwillikers ];
|
|
};
|
|
}
|