lol

python3Packages.asyncio-dgram: 2.0.0 -> 2.1.0

authored by

Fabian Affolter and committed by
Jonathan Ringer
c0976faf 9c3f8ebe

+3 -2
+3 -2
pkgs/development/python-modules/asyncio-dgram/default.nix
··· 8 8 9 9 buildPythonPackage rec { 10 10 pname = "asyncio-dgram"; 11 - version = "2.0.0"; 11 + version = "2.1.0"; 12 12 13 13 src = fetchFromGitHub { 14 14 owner = "jsbronder"; 15 15 repo = pname; 16 16 rev = "v${version}"; 17 - sha256 = "sha256-EL3iOoCfLAtfdMI1J2XMf4izOEo9+a+0PNQs+4HuEfo="; 17 + sha256 = "1ibyphncb3d8vrs3yk8j6l1smmnibizx9k1vir2njhi09r57h9mx"; 18 18 }; 19 19 20 20 # OSError: AF_UNIX path too long ··· 26 26 ]; 27 27 28 28 disabledTests = [ "test_protocol_pause_resume" ]; 29 + 29 30 pythonImportsCheck = [ "asyncio_dgram" ]; 30 31 31 32 meta = with lib; {