blob: ae959ab074f0d749517b9ff428acbe1c69bc1686 (
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
|
{
lib,
buildPythonPackage,
fetchFromGitHub,
hatchling,
aiohttp,
pytest,
pytestCheckHook,
pytest-mock,
pytest-asyncio,
}:
buildPythonPackage rec {
pname = "pyytlounge";
version = "3.2.0";
pyproject = true;
src = fetchFromGitHub {
owner = "FabioGNR";
repo = "pyytlounge";
tag = "v${version}";
hash = "sha256-8cdahP1u8Rf4m/167ie9aKcELLiWNvZOx7tV9YLK4nU=";
};
build-system = [ hatchling ];
dependencies = [ aiohttp ];
nativeCheckInputs = [
pytest
pytestCheckHook
pytest-mock
pytest-asyncio
];
meta = {
description = "Python YouTube Lounge API";
homepage = "https://github.com/FabioGNR/pyytlounge";
license = lib.licenses.gpl3Only;
maintainers = [ lib.maintainers.lukegb ];
};
}
|