mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-16 09:54:52 +00:00
33afbf39f6
checkInputs used to be added to nativeBuildInputs. Now we have nativeCheckInputs to do that instead. Doing this treewide change allows to keep hashes identical to before the introduction of nativeCheckInputs.
49 lines
878 B
Nix
49 lines
878 B
Nix
{ 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
|
|
];
|
|
|
|
nativeCheckInputs = [
|
|
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 ];
|
|
};
|
|
}
|