Files
nixpkgs/pkgs/development/python-modules/beets-audible/default.nix
T
Martin Weinelt 5e56730e6a python3Packages.beets-audible: 1.1.0 -> 1.2.1
This commit was automatically generated using update-python-libraries.
2026-02-01 16:42:20 +01:00

61 lines
1.0 KiB
Nix

{
lib,
fetchFromGitHub,
buildPythonPackage,
# build-system
hatchling,
# native
beets-minimal,
# dependencies
markdownify,
natsort,
tldextract,
# passthru
nix-update-script,
}:
buildPythonPackage rec {
pname = "beets-audible";
version = "1.2.1";
pyproject = true;
src = fetchFromGitHub {
owner = "Neurrone";
repo = "beets-audible";
tag = "v${version}";
hash = "sha256-uQNF04BK87vN5Ak3g05rS8+LQLxsNEncgz4oKhNidWI=";
};
build-system = [
hatchling
];
nativeBuildInputs = [
beets-minimal
];
pythonRelaxDeps = true;
dependencies = [
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 ];
};
}