mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-04 12:53:05 +00:00
46 lines
804 B
Nix
46 lines
804 B
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchPypi,
|
|
pythonOlder,
|
|
pycryptodome,
|
|
requests,
|
|
rtp,
|
|
urllib3,
|
|
setuptools,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "pytapo";
|
|
version = "3.3.21";
|
|
pyproject = true;
|
|
|
|
disabled = pythonOlder "3.7";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
hash = "sha256-rc9XhV99vzgoUF5ERFmJHHB9GMwq5Y44CJKg+g5tjOo=";
|
|
};
|
|
|
|
build-system = [ setuptools ];
|
|
|
|
dependencies = [
|
|
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 ];
|
|
};
|
|
}
|