{ lib, stdenv, buildPythonPackage, fetchFromGitHub, pytest-asyncio, pytestCheckHook, setuptools, }: buildPythonPackage rec { pname = "asyncio-dgram"; version = "2.2.0"; pyproject = true; src = fetchFromGitHub { owner = "jsbronder"; repo = "asyncio-dgram"; tag = "v${version}"; hash = "sha256-9aO3xFmoR74uZSzxBPRVvz0QSW15TAdWEszLBX8AUR4="; }; build-system = [ setuptools ]; nativeCheckInputs = [ pytest-asyncio pytestCheckHook ]; # OSError: AF_UNIX path too long doCheck = !stdenv.hostPlatform.isDarwin; disabledTests = [ "test_protocol_pause_resume" # TypeError: socket type must be 2 "test_from_socket_bad_socket" ]; pythonImportsCheck = [ "asyncio_dgram" ]; meta = { description = "Python support for higher level Datagram"; homepage = "https://github.com/jsbronder/asyncio-dgram"; changelog = "https://github.com/jsbronder/asyncio-dgram/blob/v${version}/ChangeLog"; license = with lib.licenses; [ mit ]; maintainers = with lib.maintainers; [ fab ]; }; }