16 buildPythonPackage rec {
21 disabled = pythonOlder "3.11";
23 src = fetchFromGitHub {
25 repo = "python-youtube";
26 rev = "refs/tags/v${version}";
27 hash = "sha256-utkf5t6yrf0f9QBIaDH6MxKduNZOsjfEWfQnuVyUoRM=";
31 sed -i "/^addopts/d" pyproject.toml
34 nativeBuildInputs = [ poetry-core ];
36 propagatedBuildInputs = [
42 pythonImportsCheck = [ "youtubeaio" ];
52 changelog = "https://github.com/joostlek/python-youtube/releases/tag/v${version}";
53 description = "Asynchronous Python client for the YouTube V3 API";
54 homepage = "https://github.com/joostlek/python-youtube";
55 license = lib.licenses.mit;
56 maintainers = with lib.maintainers; [ dotlambda ];