472aeafc57
GitOrigin-RevId: c31898adf5a8ed202ce5bea9f347b1c6871f32d1
72 lines
1.3 KiB
Nix
72 lines
1.3 KiB
Nix
{
|
|
lib,
|
|
aiofiles,
|
|
aiohttp,
|
|
aioresponses,
|
|
asyncclick,
|
|
buildPythonPackage,
|
|
fetchPypi,
|
|
firebase-messaging,
|
|
freezegun,
|
|
hatchling,
|
|
oauthlib,
|
|
pytest-asyncio,
|
|
pytest-freezer,
|
|
pytest-mock,
|
|
pytest-socket,
|
|
pytestCheckHook,
|
|
pythonOlder,
|
|
pytz,
|
|
typing-extensions,
|
|
websockets,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "ring-doorbell";
|
|
version = "0.9.6";
|
|
pyproject = true;
|
|
|
|
disabled = pythonOlder "3.9";
|
|
|
|
src = fetchPypi {
|
|
pname = "ring_doorbell";
|
|
inherit version;
|
|
hash = "sha256-pSHsQ2bJ0zNk6eJfDERVFqZM/IWorL8HFFjnwnhaHhY=";
|
|
};
|
|
|
|
pythonRelaxDeps = [ "requests-oauthlib" ];
|
|
|
|
build-system = [ hatchling ];
|
|
|
|
dependencies = [
|
|
aiofiles
|
|
aiohttp
|
|
asyncclick
|
|
firebase-messaging
|
|
oauthlib
|
|
pytz
|
|
typing-extensions
|
|
websockets
|
|
];
|
|
|
|
nativeCheckInputs = [
|
|
aioresponses
|
|
freezegun
|
|
pytest-asyncio
|
|
pytest-freezer
|
|
pytest-mock
|
|
pytest-socket
|
|
pytestCheckHook
|
|
];
|
|
|
|
pythonImportsCheck = [ "ring_doorbell" ];
|
|
|
|
meta = with lib; {
|
|
description = "Library to communicate with Ring Door Bell";
|
|
homepage = "https://github.com/tchellomello/python-ring-doorbell";
|
|
changelog = "https://github.com/tchellomello/python-ring-doorbell/blob/${version}/CHANGELOG.md";
|
|
license = licenses.lgpl3Plus;
|
|
maintainers = with maintainers; [ graham33 ];
|
|
mainProgram = "ring-doorbell";
|
|
};
|
|
}
|