biome: 1.9.2 -> 1.9.3 (#349335)
[NixPkgs.git] / pkgs / development / python-modules / tinytuya / default.nix
blob20398ec3584d93acf7615d0b6865f5e67949076a
2   lib,
3   buildPythonPackage,
4   colorama,
5   cryptography,
6   fetchFromGitHub,
7   pythonOlder,
8   requests,
9   setuptools,
12 buildPythonPackage rec {
13   pname = "tinytuya";
14   version = "1.15.1";
15   pyproject = true;
17   disabled = pythonOlder "3.10";
19   src = fetchFromGitHub {
20     owner = "jasonacox";
21     repo = "tinytuya";
22     rev = "refs/tags/v${version}";
23     hash = "sha256-T7bT4be/h67iPIH/7hjNCYsUDP+4o4HLV523sBIjGVs=";
24   };
26   build-system = [ setuptools ];
28   dependencies = [
29     cryptography
30     requests
31     colorama
32   ];
34   # Tests require real network resources
35   doCheck = false;
37   pythonImportsCheck = [ "tinytuya" ];
39   meta = with lib; {
40     description = "Python API for Tuya WiFi smart devices using a direct local area network (LAN) connection or the cloud (TuyaCloud API)";
41     homepage = "https://github.com/jasonacox/tinytuya";
42     changelog = "https://github.com/jasonacox/tinytuya/releases/tag/v${version}";
43     license = licenses.mit;
44     maintainers = with maintainers; [ pathob ];
45   };