10 buildPythonPackage rec {
11 pname = "asyncsleepiq";
15 disabled = pythonOlder "3.7";
18 inherit pname version;
19 hash = "sha256-TDHFKLifNmmAVvD5DjSopEXFbR+KPMIdSA+rLAKrfpI=";
22 nativeBuildInputs = [ setuptools ];
24 propagatedBuildInputs = [ aiohttp ];
26 # upstream has no tests
29 pythonImportsCheck = [ "asyncsleepiq" ];
32 description = "Async interface to SleepIQ API";
33 homepage = "https://github.com/kbickar/asyncsleepiq";
34 changelog = "https://github.com/kbickar/asyncsleepiq/releases/tag/v${version}";
35 license = licenses.mit;
36 maintainers = with maintainers; [ dotlambda ];