depot/third_party/nixpkgs/pkgs/development/python-modules/pytapo/default.nix
Default email 9c6ee729d6 Project import generated by Copybara.
GitOrigin-RevId: 6cee3b5893090b0f5f0a06b4cf42ca4e60e5d222
2023-07-15 19:15:38 +02:00

45 lines
780 B
Nix

{ lib
, buildPythonPackage
, fetchPypi
, pythonOlder
# propagates
, pycryptodome
, requests
, rtp
, urllib3
}:
buildPythonPackage rec {
pname = "pytapo";
version = "3.1.18";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
hash = "sha256-pYzp/iQHTXS+ovtWIwOoUfYg/h/46ZLNZyevK2vQHEA=";
};
propagatedBuildInputs = [
pycryptodome
requests
rtp
urllib3
];
pythonImportsCheck = [
"pytapo"
];
# Tests require actual hardware
doCheck = false;
meta = with lib; {
description = "Python library for communication with Tapo Cameras";
homepage = "https://github.com/JurajNyiri/pytapo";
license = with licenses; [ mit ];
maintainers = with maintainers; [ fleaz ];
};
}