{ lib , aiohttp , async-timeout , buildPythonPackage , fetchFromGitHub , pytestCheckHook , pythonOlder }: buildPythonPackage rec { pname = "aiopvapi"; version = "2.0.4"; format = "setuptools"; disabled = pythonOlder "3.7"; src = fetchFromGitHub { owner = "sander76"; repo = "aio-powerview-api"; rev = "refs/tags/v${version}"; hash = "sha256-cghfNi5T343/7GxNLDrE0iAewMlRMycQTP7SvDVpU2M="; }; propagatedBuildInputs = [ aiohttp async-timeout ]; nativeCheckInputs = [ pytestCheckHook ]; pythonImportsCheck = [ "aiopvapi" ]; meta = with lib; { description = "Python API for the PowerView API"; homepage = "https://github.com/sander76/aio-powerview-api"; license = with licenses; [ bsd3 ]; maintainers = with maintainers; [ fab ]; }; }