bcb2f287e1
GitOrigin-RevId: d603719ec6e294f034936c0d0dc06f689d91b6c3
54 lines
1.1 KiB
Nix
54 lines
1.1 KiB
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchFromGitHub,
|
|
poetry-core,
|
|
dataclasses-json,
|
|
isodate,
|
|
requests,
|
|
requests-oauthlib,
|
|
pytestCheckHook,
|
|
responses,
|
|
}:
|
|
buildPythonPackage rec {
|
|
pname = "python-youtube";
|
|
version = "0.9.4";
|
|
format = "pyproject";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "sns-sdks";
|
|
repo = "python-youtube";
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-OesJfnXI1w2d5moJyqvrWU3sCxDaqnk1bAhtK6SPjFw=";
|
|
};
|
|
|
|
postPatch = ''
|
|
substituteInPlace pytest.ini \
|
|
--replace "--cov=pyyoutube" "" \
|
|
--replace "--cov-report xml" ""
|
|
'';
|
|
|
|
nativeBuildInputs = [ poetry-core ];
|
|
|
|
propagatedBuildInputs = [
|
|
dataclasses-json
|
|
isodate
|
|
requests
|
|
requests-oauthlib
|
|
];
|
|
|
|
pythonImportsCheck = [ "pyyoutube" ];
|
|
|
|
nativeCheckInputs = [
|
|
pytestCheckHook
|
|
responses
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Simple Python wrapper around for YouTube Data API";
|
|
homepage = "https://github.com/sns-sdks/python-youtube";
|
|
changelog = "https://github.com/sns-sdks/python-youtube/blob/${src.rev}/CHANGELOG.md";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ blaggacao ];
|
|
};
|
|
}
|