My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/ring-doorbell/default.nix

48 lines
872 B

{ lib
, buildPythonPackage
, fetchPypi
, oauthlib
, pytestCheckHook
, pythonOlder
, pytz
, requests
, requests-mock
, requests-oauthlib
}:
buildPythonPackage rec {
pname = "ring-doorbell";
version = "0.7.2";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchPypi {
pname = "ring_doorbell";
inherit version;
hash = "sha256-Cn6Cq/JwhoQ+s5wCefXfzOpnUf+EhWDmcVTKb7+k7ys=";
};
propagatedBuildInputs = [
oauthlib
pytz
requests
requests-oauthlib
];
checkInputs = [
pytestCheckHook
requests-mock
];
pythonImportsCheck = [
"ring_doorbell"
];
meta = with lib; {
description = "Python library to communicate with Ring Door Bell";
homepage = "https://github.com/tchellomello/python-ring-doorbell";
license = licenses.lgpl3Plus;
maintainers = with maintainers; [ graham33 ];
};
}