My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
nomicon/pkgs/development/python-modules/async-upnp-client/default.nix

66 lines
1.4 KiB

{ lib
, aiohttp
, async-timeout
, buildPythonPackage
, defusedxml
, fetchFromGitHub
, pytest-asyncio
, pytestCheckHook
, python-didl-lite
, pythonOlder
, voluptuous
}:
buildPythonPackage rec {
pname = "async-upnp-client";
version = "0.19.1";
disabled = pythonOlder "3.6";
src = fetchFromGitHub {
owner = "StevenLooman";
repo = "async_upnp_client";
rev = version;
sha256 = "sha256-qxEn9UrQuwRaP7sZlu3854gDI7Gqku055DF8KvsU6p4=";
};
propagatedBuildInputs = [
aiohttp
async-timeout
defusedxml
python-didl-lite
voluptuous
];
checkInputs = [
pytestCheckHook
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; {
description = "Asyncio UPnP Client library for Python";
homepage = "https://github.com/StevenLooman/async_upnp_client";
license = licenses.asl20;
maintainers = with maintainers; [ hexa ];
};
}