mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 15:22:59 +01:00
Merge pull request #145596 from fabaff/bump-aiohomekit
python3Packages.aiohomekit: 0.6.3 -> 0.6.4
This commit is contained in:
commit
5deee46583
1 changed files with 8 additions and 3 deletions
|
@ -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";
|
||||||
|
|
Loading…
Reference in a new issue