blob: 25d3858801a9fc7e003daaddf1efbf6cc7c8da6b (
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
|
{
lib,
buildPythonPackage,
fetchFromGitHub,
python-dateutil,
poetry-core,
requests,
isodate,
ratelimit,
typing-extensions,
mpegdash,
pyaes,
}:
buildPythonPackage rec {
pname = "tidalapi";
version = "0.8.10";
pyproject = true;
src = fetchFromGitHub {
owner = "EbbLabs";
repo = "python-tidal";
tag = "v${version}";
hash = "sha256-hqtTe/KIGds01udMKoH5xXnoEe17FuOXLvWtp1yvJ2c=";
};
build-system = [
poetry-core
];
dependencies = [
requests
python-dateutil
mpegdash
isodate
ratelimit
typing-extensions
pyaes
];
doCheck = false; # tests require internet access
pythonImportsCheck = [
"tidalapi"
];
meta = {
changelog = "https://github.com/tamland/python-tidal/blob/v${version}/HISTORY.rst";
description = "Unofficial Python API for TIDAL music streaming service";
homepage = "https://github.com/tamland/python-tidal";
license = lib.licenses.gpl3;
maintainers = with lib.maintainers; [
drafolin
drawbu
ryand56
];
};
}
|