Merge pull request #258247 from fabaff/ring-doorbell-bump

python311Packages.ring-doorbell: 0.7.3 -> 0.7.4
This commit is contained in:
Weijia Wang 2023-10-01 00:22:40 +02:00 committed by GitHub
commit 520ffe1e30
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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