12 buildPythonPackage rec {
13 pname = "asyncio-dgram";
17 disabled = pythonOlder "3.7";
19 src = fetchFromGitHub {
21 repo = "asyncio-dgram";
23 hash = "sha256-9aO3xFmoR74uZSzxBPRVvz0QSW15TAdWEszLBX8AUR4=";
26 build-system = [ setuptools ];
33 # OSError: AF_UNIX path too long
34 doCheck = !stdenv.hostPlatform.isDarwin;
37 "test_protocol_pause_resume"
38 # TypeError: socket type must be 2
39 "test_from_socket_bad_socket"
42 pythonImportsCheck = [ "asyncio_dgram" ];
45 description = "Python support for higher level Datagram";
46 homepage = "https://github.com/jsbronder/asyncio-dgram";
47 changelog = "https://github.com/jsbronder/asyncio-dgram/blob/v${version}/ChangeLog";
48 license = with licenses; [ mit ];
49 maintainers = with maintainers; [ fab ];