python3Packages.async-upnp-client: init at 0.14.14
This commit is contained in:
parent
32a3c9a220
commit
806d2f3f1c
@ -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 ];
|
||||
};
|
||||
}
|
@ -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 { };
|
||||
|
Loading…
Reference in New Issue
Block a user