python3Packages.async-upnp-client: init at 0.14.14

This commit is contained in:
Martin Weinelt 2020-08-02 03:24:27 +02:00 committed by Jon
parent 32a3c9a220
commit 806d2f3f1c
2 changed files with 38 additions and 0 deletions

View File

@ -0,0 +1,36 @@
{ lib, buildPythonPackage, fetchFromGitHub, pythonOlder
, voluptuous, aiohttp, async-timeout, python-didl-lite, defusedxml
, pytest, pytest-asyncio }:
buildPythonPackage rec {
pname = "async-upnp-client";
version = "0.14.14";
disabled = pythonOlder "3.5";
src = fetchFromGitHub {
owner = "StevenLooman";
repo = "async_upnp_client";
rev = version;
sha256 = "1ysj72l4z78h427ar95x7af0jw0xq1cbca0k8b34vqyyhgs8wc6y";
};
propagatedBuildInputs = [
aiohttp
async-timeout
defusedxml
python-didl-lite
voluptuous
];
checkInputs = [
pytest
pytest-asyncio
];
meta = with lib; {
description = "Asyncio UPnP Client library for Python/asyncio.";
homepage = "https://github.com/StevenLooman/async_upnp_client";
license = licenses.asl20;
maintainers = with maintainers; [ hexa ];
};
}

View File

@ -1916,6 +1916,8 @@ in {
async_generator = callPackage ../development/python-modules/async_generator { };
async-upnp-client = callPackage ../development/python-modules/async-upnp-client { };
asn1ate = callPackage ../development/python-modules/asn1ate { };
atlassian-python-api = callPackage ../development/python-modules/atlassian-python-api { };