Merge pull request #239956 from mweinelt/async-upnp-client-0.34.0

python310Packages.async-upnp-client: 0.33.2 -> 0.34.0
This commit is contained in:
Martin Weinelt 2023-06-26 21:42:59 +02:00 committed by GitHub
commit 3d37eb0293
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -5,6 +5,7 @@
, buildPythonPackage
, defusedxml
, fetchFromGitHub
, pytest-aiohttp
, pytest-asyncio
, pytestCheckHook
, python-didl-lite
@ -14,16 +15,16 @@
buildPythonPackage rec {
pname = "async-upnp-client";
version = "0.33.2";
version = "0.34.0";
format = "setuptools";
disabled = pythonOlder "3.7";
disabled = pythonOlder "3.8";
src = fetchFromGitHub {
owner = "StevenLooman";
repo = "async_upnp_client";
rev = "refs/tags/${version}";
hash = "sha256-6bTXKlogciD1iTFbo3Pss3fYnXsg4bc2GvryBvC3CDg=";
hash = "sha256-nowtQbgYkXOHQcbjlPDzhJORzSla1gmUoW9qrW0QujE=";
};
propagatedBuildInputs = [
@ -36,6 +37,7 @@ buildPythonPackage rec {
nativeCheckInputs = [
pytestCheckHook
pytest-aiohttp
pytest-asyncio
];