python3Packages.asyncio-dgram: 2.0.0 -> 2.1.0

This commit is contained in:
Fabian Affolter 2021-08-07 14:13:33 +02:00 committed by Jonathan Ringer
parent 9c3f8ebeac
commit c0976faff9

View file

@ -8,13 +8,13 @@
buildPythonPackage rec {
pname = "asyncio-dgram";
version = "2.0.0";
version = "2.1.0";
src = fetchFromGitHub {
owner = "jsbronder";
repo = pname;
rev = "v${version}";
sha256 = "sha256-EL3iOoCfLAtfdMI1J2XMf4izOEo9+a+0PNQs+4HuEfo=";
sha256 = "1ibyphncb3d8vrs3yk8j6l1smmnibizx9k1vir2njhi09r57h9mx";
};
# OSError: AF_UNIX path too long
@ -26,6 +26,7 @@ buildPythonPackage rec {
];
disabledTests = [ "test_protocol_pause_resume" ];
pythonImportsCheck = [ "asyncio_dgram" ];
meta = with lib; {