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

python3Packages.async-upnp-client: 0.19.1 -> 0.19.2
This commit is contained in:
Fabian Affolter 2021-08-21 09:17:09 +02:00 committed by GitHub
commit caab09b8d4
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,4 +1,5 @@
{ lib
, stdenv
, aiohttp
, async-timeout
, buildPythonPackage
@ -13,14 +14,14 @@
buildPythonPackage rec {
pname = "async-upnp-client";
version = "0.19.1";
version = "0.19.2";
disabled = pythonOlder "3.6";
src = fetchFromGitHub {
owner = "StevenLooman";
repo = "async_upnp_client";
rev = version;
sha256 = "sha256-qxEn9UrQuwRaP7sZlu3854gDI7Gqku055DF8KvsU6p4=";
sha256 = "1v8d2lvxihqasn7866zssys16s0lgxkk6ri2dp4rr7wr8g9ixvdr";
};
propagatedBuildInputs = [
@ -52,6 +53,8 @@ buildPythonPackage rec {
"test_subscribe_renew"
"test_start_server"
"test_init"
] ++ lib.optionals stdenv.isDarwin [
"test_deferred_callback_url"
];
pythonImportsCheck = [ "async_upnp_client" ];