blob: 91bc1c68ba98ae580dc218944bd2534ada28f05f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
|
{
lib,
buildPythonPackage,
fetchFromGitHub,
setuptools,
aiohttp,
mashumaro,
python-socketio,
}:
buildPythonPackage rec {
pname = "aioaudiobookshelf";
version = "0.1.25";
pyproject = true;
src = fetchFromGitHub {
owner = "music-assistant";
repo = "aioaudiobookshelf";
tag = version;
hash = "sha256-i5S9rrC4Ap4RG7PEfqCiS3wNw7drlI0cvbWwm8Lx1hA=";
};
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 ];
};
}
|