{ lib , aiohttp , buildPythonPackage , fetchPypi , pythonOlder }: buildPythonPackage rec { pname = "asyncsleepiq"; version = "1.2.3"; format = "setuptools"; disabled = pythonOlder "3.7"; src = fetchPypi { inherit pname version; sha256 = "sha256-X+bJyzQxWJaS1/KNOE/3zQKSbwUpm9XN35HYf6s+BPs="; }; propagatedBuildInputs = [ aiohttp ]; # upstream has no tests doCheck = false; pythonImportsCheck = [ "asyncsleepiq" ]; meta = with lib; { description = "Async interface to SleepIQ API"; homepage = "https://github.com/kbickar/asyncsleepiq"; license = licenses.mit; maintainers = with maintainers; [ dotlambda ]; }; }