-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmusicassistant.nix
71 lines (65 loc) · 1.44 KB
/
musicassistant.nix
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
lib,
fetchFromGitHub,
python3,
}:
python3.pkgs.buildPythonPackage rec {
pname = "server";
version = "2.0.4";
format = "other";
propagatedBuildInputs = with python3.pkgs; [
brotli
aiodns
aiofiles
aiohttp
aiorun
aioslimproto
aiosqlite
async-upnp-client
asyncio-throttle
certifi
colorlog
cryptography
deezer-python-async
defusedxml
faust-cchardet
hass-client
ifaddr
jellyfin_apiclient_python
mashumaro
memory-tempfile
music-assistant-frontend
orjson
pillow
plexapi
py-opensonic
PyChromecast
pycryptodome
python-fullykiosk
python-slugify
radios
shortuuid
snapcast
soco
sonos-websocket
soundcloudpy
tidalapi
unidecode
xmltodict
ytmusicapi
zeroconf
];
src = fetchFromGitHub {
owner = "music-assistant";
repo = "${pname}";
rev = "v${version}";
sha256 = "";
};
meta = with lib; {
description = " Music Assistant is a free, opensource Media library manager that connects to your streaming services and a wide range of connected speakers. The server is the beating heart, the core of Music Assistant and must run on an always-on device like a Raspberry Pi, a NAS or an Intel NUC or alike. ";
homepage = "https://github.com/music-assistant/server";
license = licenses.asl20;
platforms = platforms.linux;
maintainers = with maintainers; [ tcheronneau ];
};
}