python3Packages.async-upnp-client: 0.18.0 -> 0.19.0

This commit is contained in:
Martin Weinelt 2021-06-19 23:42:41 +02:00
parent cc8f0107f3
commit e0ec22794b

View file

@ -13,14 +13,14 @@
buildPythonPackage rec {
pname = "async-upnp-client";
version = "0.18.0";
disabled = pythonOlder "3.5";
version = "0.19.0";
disabled = pythonOlder "3.6";
src = fetchFromGitHub {
owner = "StevenLooman";
repo = "async_upnp_client";
rev = version;
sha256 = "sha256-pntOy7J4dPtAS8ZzxLLV79VQ36r+0sXMImJFhDk9bQw=";
sha256 = "0xj3j54nasl59gs1k84h3fixjsaqn7whg33h6wi99l5yfbwfqv8p";
};
propagatedBuildInputs = [
@ -36,6 +36,24 @@ buildPythonPackage rec {
pytest-asyncio
];
disabledTests = [
# socket.gaierror: [Errno -2] Name or service not known
"test_get_local_ip"
"test_async_get_local_ip"
# OSError: [Errno 101] Network is unreachable
"test_subscribe_fail"
"test_subscribe_auto_resubscribe"
"test_subscribe_manual_resubscribe"
"test_auto_resubscribe_fail"
"test_on_notify_dlna_event"
"test_on_notify_upnp_event"
"test_unsubscribe"
"test_subscribe"
"test_subscribe_renew"
"test_start_server"
"test_init"
];
pythonImportsCheck = [ "async_upnp_client" ];
meta = with lib; {