Merge pull request #300226 from fabaff/async-upnp-client-bump

python312Packages.async-upnp-client: 0.38.2 -> 0.38.3
This commit is contained in:
Fabian Affolter 2024-04-01 23:16:32 +02:00 committed by GitHub
commit 8b73e6e82b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -22,7 +22,7 @@
buildPythonPackage rec { buildPythonPackage rec {
pname = "async-upnp-client"; pname = "async-upnp-client";
version = "0.38.2"; version = "0.38.3";
pyproject = true; pyproject = true;
disabled = pythonOlder "3.8"; disabled = pythonOlder "3.8";
@ -31,14 +31,14 @@ buildPythonPackage rec {
owner = "StevenLooman"; owner = "StevenLooman";
repo = "async_upnp_client"; repo = "async_upnp_client";
rev = "refs/tags/${version}"; rev = "refs/tags/${version}";
hash = "sha256-gPA9u1BuMswfg5Nll8l6vrcTP2s3Zn9ESTbV+dOxlhA="; hash = "sha256-RmpQOVZ/s3Zv2e+iS7LTI5Wh/g0yy0Xv0M8ppsbYZPg=";
}; };
nativeBuildInputs = [ build-system = [
setuptools setuptools
]; ];
propagatedBuildInputs = [ dependencies = [
aiohttp aiohttp
async-timeout async-timeout
defusedxml defusedxml
@ -56,20 +56,6 @@ buildPythonPackage rec {
# socket.gaierror: [Errno -2] Name or service not known # socket.gaierror: [Errno -2] Name or service not known
"test_async_get_local_ip" "test_async_get_local_ip"
"test_get_local_ip" "test_get_local_ip"
# OSError: [Errno 101] Network is unreachable
"test_auto_resubscribe_fail"
"test_init"
"test_on_notify_dlna_event"
"test_on_notify_upnp_event"
"test_server_init"
"test_server_start"
"test_start_server"
"test_subscribe"
"test_subscribe_auto_resubscribe"
"test_subscribe_fail"
"test_subscribe_manual_resubscribe"
"test_subscribe_renew"
"test_unsubscribe"
] ++ lib.optionals stdenv.isDarwin [ ] ++ lib.optionals stdenv.isDarwin [
"test_deferred_callback_url" "test_deferred_callback_url"
]; ];
@ -85,10 +71,10 @@ buildPythonPackage rec {
meta = with lib; { meta = with lib; {
description = "Asyncio UPnP Client library for Python"; description = "Asyncio UPnP Client library for Python";
mainProgram = "upnp-client";
homepage = "https://github.com/StevenLooman/async_upnp_client"; homepage = "https://github.com/StevenLooman/async_upnp_client";
changelog = "https://github.com/StevenLooman/async_upnp_client/blob/${version}/CHANGES.rst"; changelog = "https://github.com/StevenLooman/async_upnp_client/blob/${version}/CHANGES.rst";
license = licenses.asl20; license = licenses.asl20;
maintainers = with maintainers; [ hexa ]; maintainers = with maintainers; [ hexa ];
mainProgram = "upnp-client";
}; };
} }