Merge pull request #112079 from fabaff/bump-aioharmony

python3Packages.aioharmony: 0.2.6 -> 0.2.7
This commit is contained in:
Sandro 2021-02-06 00:21:00 +01:00 committed by GitHub
commit e8c018c67e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 18 additions and 9 deletions

View File

@ -1,27 +1,36 @@
{ lib, buildPythonPackage, fetchPypi, isPy3k, slixmpp, async-timeout, aiohttp }:
{ lib
, aiohttp
, async-timeout
, buildPythonPackage
, fetchPypi
, isPy3k
, slixmpp
}:
buildPythonPackage rec {
pname = "aioharmony";
version = "0.2.6";
version = "0.2.7";
disabled = !isPy3k;
src = fetchPypi {
inherit pname version;
sha256 = "90f4d1220d44b48b21a57e0273aa3c4a51599d0097af88e8be26df151e599344";
sha256 = "sha256-aej8xC0Bsy6ip7IwO6onp55p6afkz8yZnz14cCExSPA=";
};
disabled = !isPy3k;
propagatedBuildInputs = [
aiohttp
async-timeout
slixmpp
];
#aioharmony does not seem to include tests
# aioharmony does not seem to include tests
doCheck = false;
pythonImportsCheck = [ "aioharmony.harmonyapi" "aioharmony.harmonyclient" ];
propagatedBuildInputs = [ slixmpp async-timeout aiohttp ];
meta = with lib; {
homepage = "https://github.com/ehendrix23/aioharmony";
description =
"Asyncio Python library for connecting to and controlling the Logitech Harmony";
description = "Python library for interacting the Logitech Harmony devices";
license = licenses.asl20;
maintainers = with maintainers; [ oro ];
};