Files
nixpkgs/pkgs/development/python-modules/aioaudiobookshelf/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

44 lines
802 B
Nix
Raw Normal View History

2025-10-09 14:15:47 +02:00
{
lib,
buildPythonPackage,
fetchFromGitHub,
setuptools,
aiohttp,
mashumaro,
python-socketio,
}:
buildPythonPackage rec {
pname = "aioaudiobookshelf";
version = "0.1.7";
pyproject = true;
src = fetchFromGitHub {
owner = "music-assistant";
repo = "aioaudiobookshelf";
tag = version;
hash = "sha256-sHRyrh+FwR9Vc9LVOA069iH5Wg56Ye4e9bOxdTR6PPs=";
};
build-system = [
setuptools
];
dependencies = [
aiohttp
mashumaro
python-socketio
];
pythonImportsCheck = [
"aioaudiobookshelf"
];
meta = {
description = "Async python library to interact with Audiobookshelf";
homepage = "https://github.com/music-assistant/aioaudiobookshelf";
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ hexa ];
};
}