1{ lib
2, aiohttp
3, buildPythonPackage
4, fetchFromGitHub
5, netifaces
6, pythonOlder
7}:
8
9buildPythonPackage rec {
10 pname = "aioshelly";
11 version = "1.0.5";
12 format = "setuptools";
13
14 disabled = pythonOlder "3.8";
15
16 src = fetchFromGitHub {
17 owner = "home-assistant-libs";
18 repo = pname;
19 rev = version;
20 sha256 = "sha256-AaEnVMup/sGR3ENtN6NF/CzG05P4Er5LI8mG5LNVzAo=";
21 };
22
23 propagatedBuildInputs = [
24 aiohttp
25 netifaces
26 ];
27
28 # Project has no test
29 doCheck = false;
30
31 pythonImportsCheck = [
32 "aioshelly"
33 ];
34
35 meta = with lib; {
36 description = "Python library to control Shelly";
37 homepage = "https://github.com/home-assistant-libs/aioshelly";
38 changelog = "https://github.com/home-assistant-libs/aioshelly/releases/tag/${version}";
39 license = with licenses; [ asl20 ];
40 maintainers = with maintainers; [ fab ];
41 };
42}