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
1 changed files with 5 additions and 19 deletions

View File

@ -22,7 +22,7 @@
buildPythonPackage rec {
pname = "async-upnp-client";
version = "0.38.2";
version = "0.38.3";
pyproject = true;
disabled = pythonOlder "3.8";
@ -31,14 +31,14 @@ buildPythonPackage rec {
owner = "StevenLooman";
repo = "async_upnp_client";
rev = "refs/tags/${version}";
hash = "sha256-gPA9u1BuMswfg5Nll8l6vrcTP2s3Zn9ESTbV+dOxlhA=";
hash = "sha256-RmpQOVZ/s3Zv2e+iS7LTI5Wh/g0yy0Xv0M8ppsbYZPg=";
};
nativeBuildInputs = [
build-system = [
setuptools
];
propagatedBuildInputs = [
dependencies = [
aiohttp
async-timeout
defusedxml
@ -56,20 +56,6 @@ buildPythonPackage rec {
# socket.gaierror: [Errno -2] Name or service not known
"test_async_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 [
"test_deferred_callback_url"
];
@ -85,10 +71,10 @@ buildPythonPackage rec {
meta = with lib; {
description = "Asyncio UPnP Client library for Python";
mainProgram = "upnp-client";
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";
};
}