nixpkgs/pkgs/development/python-modules/aiohomekit/default.nix
2021-07-22 23:07:01 +02:00

56 lines
1.1 KiB
Nix

{ lib
, buildPythonPackage
, cryptography
, fetchFromGitHub
, poetry-core
, pytest-aiohttp
, pytestCheckHook
, pythonAtLeast
, zeroconf
}:
buildPythonPackage rec {
pname = "aiohomekit";
version = "0.4.2";
format = "pyproject";
src = fetchFromGitHub {
owner = "Jc2k";
repo = pname;
rev = version;
sha256 = "12v9szalh3yzfqgmspk4ch8l38kzmhwzjn9jvsq632n4zhjd7qg4";
};
nativeBuildInputs = [
poetry-core
];
propagatedBuildInputs = [
cryptography
zeroconf
];
checkInputs = [
pytest-aiohttp
pytestCheckHook
];
disabledTestPaths = [
# Tests require network access
"tests/test_ip_pairing.py"
];
pythonImportsCheck = [ "aiohomekit" ];
meta = with lib; {
description = "Python module that implements the HomeKit protocol";
longDescription = ''
This Python library implements the HomeKit protocol for controlling
Homekit accessories.
'';
homepage = "https://github.com/Jc2k/aiohomekit";
license = with licenses; [ asl20 ];
maintainers = with maintainers; [ fab ];
};
}