depot/third_party/nixpkgs/pkgs/development/python-modules/pytapo/default.nix
Default email 87f9c27ba9 Project import generated by Copybara.
GitOrigin-RevId: fe2ecaf706a5907b5e54d979fbde4924d84b65fc
2023-04-12 14:48:02 +02:00

42 lines
733 B
Nix

{ lib
, buildPythonPackage
, fetchPypi
# propagates
, pycryptodome
, requests
, rtp
, urllib3
}:
buildPythonPackage rec {
pname = "pytapo";
version = "3.1.7";
format = "setuptools";
src = fetchPypi {
inherit pname version;
hash = "sha256-e5XeXPwf2QSZ/xgaPBPoRBaTvC8oNYI9/b190wSI4oQ=";
};
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 ];
};
}