nixpkgs/pkgs/development/python-modules/async-upnp-client/default.nix
2024-03-30 13:49:06 +01:00

81 lines
1.5 KiB
Nix

{ lib
, stdenv
, buildPythonPackage
, fetchFromGitHub
, pythonOlder
# build-system
, setuptools
# dependencies
, aiohttp
, async-timeout
, defusedxml
, python-didl-lite
, voluptuous
# tests
, pytest-aiohttp
, pytest-asyncio
, pytestCheckHook
}:
buildPythonPackage rec {
pname = "async-upnp-client";
version = "0.38.3";
pyproject = true;
disabled = pythonOlder "3.8";
src = fetchFromGitHub {
owner = "StevenLooman";
repo = "async_upnp_client";
rev = "refs/tags/${version}";
hash = "sha256-RmpQOVZ/s3Zv2e+iS7LTI5Wh/g0yy0Xv0M8ppsbYZPg=";
};
build-system = [
setuptools
];
dependencies = [
aiohttp
async-timeout
defusedxml
python-didl-lite
voluptuous
];
nativeCheckInputs = [
pytestCheckHook
pytest-aiohttp
pytest-asyncio
];
disabledTests = [
# socket.gaierror: [Errno -2] Name or service not known
"test_async_get_local_ip"
"test_get_local_ip"
] ++ lib.optionals stdenv.isDarwin [
"test_deferred_callback_url"
];
disabledTestPaths = [
# Tries to bind to multicast socket and fails to find proper interface
"tests/test_ssdp_listener.py"
];
pythonImportsCheck = [
"async_upnp_client"
];
meta = with lib; {
description = "Asyncio UPnP Client library for Python";
homepage = "https://github.com/StevenLooman/async_upnp_client";
changelog = "https://github.com/StevenLooman/async_upnp_client/blob/${version}/CHANGES.rst";
license = licenses.asl20;
maintainers = with maintainers; [ hexa ];
mainProgram = "upnp-client";
};
}