python3Packages.async-upnp-client: 0.14.14 -> 0.14.15

This commit is contained in:
Martin Weinelt 2020-11-18 03:47:28 +01:00 committed by Jonathan Ringer
parent 5c4a4a5d6f
commit 46463b7d47

View file

@ -1,17 +1,17 @@
{ lib, buildPythonPackage, fetchFromGitHub, pythonOlder
, voluptuous, aiohttp, async-timeout, python-didl-lite, defusedxml
, pytest, pytest-asyncio }:
, pytest_6, pytest-asyncio }:
buildPythonPackage rec {
pname = "async-upnp-client";
version = "0.14.14";
version = "0.14.15";
disabled = pythonOlder "3.5";
src = fetchFromGitHub {
owner = "StevenLooman";
repo = "async_upnp_client";
rev = version;
sha256 = "1ysj72l4z78h427ar95x7af0jw0xq1cbca0k8b34vqyyhgs8wc6y";
sha256 = "1mr65msdc51wq7326z3q41x79yi9dsmcjrmyzkgj9h9vgpxdk2nw";
};
propagatedBuildInputs = [
@ -23,7 +23,7 @@ buildPythonPackage rec {
];
checkInputs = [
pytest
pytest_6
pytest-asyncio
];