Merge pull request #145596 from fabaff/bump-aiohomekit

python3Packages.aiohomekit: 0.6.3 -> 0.6.4
This commit is contained in:
Fabian Affolter 2021-11-25 23:38:15 +01:00 committed by GitHub
commit 5deee46583
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -6,19 +6,22 @@
, poetry-core , poetry-core
, pytest-aiohttp , pytest-aiohttp
, pytestCheckHook , pytestCheckHook
, pythonOlder
, zeroconf , zeroconf
}: }:
buildPythonPackage rec { buildPythonPackage rec {
pname = "aiohomekit"; pname = "aiohomekit";
version = "0.6.3"; version = "0.6.4";
format = "pyproject"; format = "pyproject";
disabled = pythonOlder "3.7";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "Jc2k"; owner = "Jc2k";
repo = pname; repo = pname;
rev = version; rev = version;
sha256 = "sha256-XBinbhYUB9BuQxxmWfZUw276uNam4DgBpiCAjT7KDlg="; sha256 = "sha256-+W1nsJsiVL4hjtNUyKOsQNyX0Bki/C1FvmoD2OCwqeM=";
}; };
nativeBuildInputs = [ nativeBuildInputs = [
@ -41,7 +44,9 @@ buildPythonPackage rec {
"tests/test_ip_pairing.py" "tests/test_ip_pairing.py"
]; ];
pythonImportsCheck = [ "aiohomekit" ]; pythonImportsCheck = [
"aiohomekit"
];
meta = with lib; { meta = with lib; {
description = "Python module that implements the HomeKit protocol"; description = "Python module that implements the HomeKit protocol";