python311Packages.ring-doorbell: 0.7.3 -> 0.7.4

Changelog: https://github.com/tchellomello/python-ring-doorbell/releases/tag/0.7.4
This commit is contained in:
Fabian Affolter 2023-09-30 19:57:17 +02:00
parent 1f0e8ac1f9
commit fee9ab02fc

View file

@ -2,6 +2,7 @@
, buildPythonPackage
, fetchPypi
, oauthlib
, poetry-core
, pytestCheckHook
, pythonOlder
, pytz
@ -12,17 +13,21 @@
buildPythonPackage rec {
pname = "ring-doorbell";
version = "0.7.3";
format = "setuptools";
version = "0.7.4";
pyproject = true;
disabled = pythonOlder "3.7";
disabled = pythonOlder "3.8";
src = fetchPypi {
pname = "ring_doorbell";
inherit version;
hash = "sha256-HYRuQZpdtBkVfFBdqQupAjzQpLIBvKGm42cCumc03GM=";
hash = "sha256-hto3MwlC6ADjKkcB/4l/uFyw+0CgvLZM0sp3FF62XUA=";
};
nativeBuildInputs = [
poetry-core
];
propagatedBuildInputs = [
oauthlib
pytz