blob: b97727cc91e3a84d3c596a9d16d87c7f9701fab2 (
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
|
{
lib,
buildPythonPackage,
fetchFromGitHub,
poetry-core,
aiohttp,
pydantic,
yarl,
aresponses,
pytest-asyncio,
pytest-cov-stub,
pytestCheckHook,
syrupy,
}:
buildPythonPackage rec {
pname = "youtubeaio";
version = "2.1.1";
pyproject = true;
src = fetchFromGitHub {
owner = "joostlek";
repo = "python-youtube";
tag = "v${version}";
hash = "sha256-2PqVFZ5816g8Ilc0Mhlm+Gzw/eOSaC1JYPY/t2yzxCU=";
};
build-system = [ poetry-core ];
dependencies = [
aiohttp
pydantic
yarl
];
pythonImportsCheck = [ "youtubeaio" ];
nativeCheckInputs = [
aresponses
pytest-asyncio
pytest-cov-stub
pytestCheckHook
syrupy
];
meta = {
changelog = "https://github.com/joostlek/python-youtube/releases/tag/${src.tag}";
description = "Asynchronous Python client for the YouTube V3 API";
homepage = "https://github.com/joostlek/python-youtube";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ dotlambda ];
};
}
|