9 buildPythonPackage rec {
10 pname = "asyncio-dgram";
13 src = fetchFromGitHub {
17 sha256 = "sha256-wgcL/BdNjzitkkaGyRUQbW1uv1enLDnHk30YHClK58o=";
20 # OSError: AF_UNIX path too long
21 doCheck = !stdenv.isDarwin;
28 disabledTests = [ "test_protocol_pause_resume" ];
29 pythonImportsCheck = [ "asyncio_dgram" ];
32 description = "Python support for higher level Datagram";
33 homepage = "https://github.com/jsbronder/asyncio-dgram";
34 license = with licenses; [ mit ];
35 maintainers = with maintainers; [ fab ];