10 buildPythonPackage rec {
11 pname = "pytedee-async";
15 disabled = pythonOlder "3.9";
17 src = fetchFromGitHub {
19 repo = "pytedee_async";
20 rev = "refs/tags/v${version}";
21 hash = "sha256-mBE5h6oGEJ2Wzb/PCD4vwFs52tWy+YmQVA06BPVW1Kg=";
24 build-system = [ setuptools ];
26 dependencies = [ aiohttp ];
28 pythonImportsCheck = [ "pytedee_async" ];
34 description = "Module to interact with Tedee locks";
35 homepage = "https://github.com/zweckj/pytedee_async";
36 changelog = "https://github.com/zweckj/pytedee_async/releases/tag/v${version}";
37 license = licenses.mit;
38 maintainers = with maintainers; [ fab ];