{ lib , aiohttp , aresponses , asynctest , buildPythonPackage , fetchFromGitHub , poetry-core , pytest-aiohttp , pytest-asyncio , pytest-mock , pytestCheckHook , pythonOlder }: buildPythonPackage rec { pname = "regenmaschine"; version = "2022.07.1"; format = "pyproject"; disabled = pythonOlder "3.8"; src = fetchFromGitHub { owner = "bachya"; repo = pname; rev = "refs/tags/${version}"; sha256 = "sha256-x8KyNB3aNiRT64/rrA7y8LM7ZOd524ok++n1Fwjz1Gc="; }; nativeBuildInputs = [ poetry-core ]; propagatedBuildInputs = [ aiohttp ]; checkInputs = [ aresponses asynctest pytest-aiohttp pytest-asyncio pytest-mock pytestCheckHook ]; disabledTestPaths = [ # Examples are prefix with test_ "examples/" ]; pythonImportsCheck = [ "regenmaschine" ]; __darwinAllowLocalNetworking = true; meta = with lib; { description = "Python library for interacting with RainMachine smart sprinkler controllers"; homepage = "https://github.com/bachya/regenmaschine"; license = with licenses; [ mit ]; maintainers = with maintainers; [ fab ]; }; }