{ lib , stdenv , buildPythonPackage , fetchFromGitHub , pytest-asyncio , pytest-timeout , pytestCheckHook , pythonOlder }: buildPythonPackage rec { pname = "pypck"; version = "0.7.15"; format = "setuptools"; disabled = pythonOlder "3.8"; src = fetchFromGitHub { owner = "alengwenus"; repo = pname; rev = version; hash = "sha256-OuM/r9rxIl4niY87cEcbZ73x2ZIQbaPZqbMrQ7hZE/g="; }; checkInputs = [ pytest-asyncio pytest-timeout pytestCheckHook ]; pytestFlagsArray = [ "--asyncio-mode=legacy" ]; disabledTests = lib.optionals stdenv.isDarwin [ "test_connection_lost" ]; __darwinAllowLocalNetworking = true; pythonImportsCheck = [ "pypck" ]; meta = with lib; { description = "LCN-PCK library written in Python"; homepage = "https://github.com/alengwenus/pypck"; license = with licenses; [ epl20 ]; maintainers = with maintainers; [ fab ]; }; }