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

This commit is contained in:
Martin Weinelt 2021-04-01 01:36:56 +02:00 committed by GitHub
commit 87a25ded40
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 27 additions and 14 deletions

View File

@ -1,17 +1,26 @@
{ lib, buildPythonPackage, fetchFromGitHub, pythonOlder { lib
, voluptuous, aiohttp, async-timeout, python-didl-lite, defusedxml , aiohttp
, pytestCheckHook, pytest-asyncio }: , async-timeout
, buildPythonPackage
, defusedxml
, fetchFromGitHub
, pytest-asyncio
, pytestCheckHook
, python-didl-lite
, pythonOlder
, voluptuous
}:
buildPythonPackage rec { buildPythonPackage rec {
pname = "async-upnp-client"; pname = "async-upnp-client";
version = "0.14.15"; version = "0.16.0";
disabled = pythonOlder "3.5"; disabled = pythonOlder "3.5";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "StevenLooman"; owner = "StevenLooman";
repo = "async_upnp_client"; repo = "async_upnp_client";
rev = version; rev = version;
sha256 = "1mr65msdc51wq7326z3q41x79yi9dsmcjrmyzkgj9h9vgpxdk2nw"; sha256 = "sha256-vgy/zn1Xm7Fm7u/YMe/nJa3tyRNKx/WHz0AHfhFaVKo=";
}; };
propagatedBuildInputs = [ propagatedBuildInputs = [
@ -27,8 +36,10 @@ buildPythonPackage rec {
pytest-asyncio pytest-asyncio
]; ];
pythonImportsCheck = [ "async_upnp_client" ];
meta = with lib; { meta = with lib; {
description = "Asyncio UPnP Client library for Python/asyncio."; description = "Asyncio UPnP Client library for Python";
homepage = "https://github.com/StevenLooman/async_upnp_client"; homepage = "https://github.com/StevenLooman/async_upnp_client";
license = licenses.asl20; license = licenses.asl20;
maintainers = with maintainers; [ hexa ]; maintainers = with maintainers; [ hexa ];

View File

@ -1,17 +1,21 @@
{ lib, buildPythonPackage, fetchFromGitHub, pythonOlder { lib
, buildPythonPackage
, fetchFromGitHub
, pythonOlder
, defusedxml , defusedxml
, pytest }: , pytestCheckHook
}:
buildPythonPackage rec { buildPythonPackage rec {
pname = "python-didl-lite"; pname = "python-didl-lite";
version = "1.2.5"; version = "1.2.6";
disabled = pythonOlder "3.5.3"; disabled = pythonOlder "3.5.3";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "StevenLooman"; owner = "StevenLooman";
repo = pname; repo = pname;
rev = version; rev = version;
sha256 = "0wm831g8k9xahw20y0461cvy6lp45sxppicxah1rg9isdc3vy3nh"; sha256 = "sha256-1rr26dnV5As15HeFLWEDBDYPiRDHkGfYOYFhSJi7iyU=";
}; };
propagatedBuildInputs = [ propagatedBuildInputs = [
@ -19,12 +23,10 @@ buildPythonPackage rec {
]; ];
checkInputs = [ checkInputs = [
pytest pytestCheckHook
]; ];
checkPhase = '' pythonImportsCheck = [ "didl_lite" ];
py.test
'';
meta = with lib; { meta = with lib; {
description = "DIDL-Lite (Digital Item Declaration Language) tools for Python"; description = "DIDL-Lite (Digital Item Declaration Language) tools for Python";