python310Packages.hap-python: add changelog to meta

This commit is contained in:
Fabian Affolter 2022-12-10 22:28:24 +01:00 committed by Robert Schütz
parent 790020f680
commit 5c036da611

View File

@ -18,13 +18,14 @@ buildPythonPackage rec {
pname = "hap-python";
version = "4.5.0";
format = "setuptools";
disabled = pythonOlder "3.6";
src = fetchFromGitHub {
owner = "ikalchev";
repo = "HAP-python";
rev = "refs/tags/v${version}";
sha256 = "sha256-/XJvCL9hMIrOUwGPcrvSrJ6SZ/E6BQy+isFFlAniIM4=";
hash = "sha256-/XJvCL9hMIrOUwGPcrvSrJ6SZ/E6BQy+isFFlAniIM4=";
};
propagatedBuildInputs = [
@ -64,11 +65,14 @@ buildPythonPackage rec {
"test_migration_to_include_client_properties"
];
pythonImportsCheck = [ "pyhap" ];
pythonImportsCheck = [
"pyhap"
];
meta = with lib; {
description = "HomeKit Accessory Protocol implementation";
homepage = "https://github.com/ikalchev/HAP-python";
description = "HomeKit Accessory Protocol implementation in python";
changelog = "https://github.com/ikalchev/HAP-python/blob/v${version}/CHANGELOG.md";
license = licenses.asl20;
maintainers = with maintainers; [ oro ];
};