47 lines
1002 B
Nix

{
lib,
buildPythonPackage,
colorama,
cryptography,
fetchFromGitHub,
pythonOlder,
requests,
setuptools,
}:
buildPythonPackage rec {
pname = "tinytuya";
version = "1.17.2";
pyproject = true;
disabled = pythonOlder "3.10";
src = fetchFromGitHub {
owner = "jasonacox";
repo = "tinytuya";
tag = "v${version}";
hash = "sha256-x6ZfpT3ucby95uthHX4KLLZNLWxyh6+ERDd5jb7p09g=";
};
build-system = [ setuptools ];
dependencies = [
cryptography
requests
colorama
];
# Tests require real network resources
doCheck = false;
pythonImportsCheck = [ "tinytuya" ];
meta = with lib; {
description = "Python API for Tuya WiFi smart devices using a direct local area network (LAN) connection or the cloud (TuyaCloud API)";
homepage = "https://github.com/jasonacox/tinytuya";
changelog = "https://github.com/jasonacox/tinytuya/releases/tag/${src.tag}";
license = licenses.mit;
maintainers = with maintainers; [ pathob ];
};
}