3
0
Fork 0
forked from mirrors/nixpkgs

Merge pull request #238611 from fabaff/hap-python-bump

python311Packages.hap-python: 4.6.0 -> 4.7.0
This commit is contained in:
Fabian Affolter 2023-06-20 08:02:38 +02:00 committed by GitHub
commit 8c01fbf87d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -16,7 +16,7 @@
buildPythonPackage rec {
pname = "hap-python";
version = "4.6.0";
version = "4.7.0";
format = "setuptools";
disabled = pythonOlder "3.6";
@ -24,7 +24,7 @@ buildPythonPackage rec {
src = fetchFromGitHub {
owner = "ikalchev";
repo = "HAP-python";
rev = "refs/tags/v${version}";
rev = "refs/tags/${version}";
hash = "sha256-fAJB1gk8zTS/mW5KzWr3z26qctZc/EQlk//WM1Xwpl0=";
};
@ -72,7 +72,7 @@ buildPythonPackage rec {
meta = with lib; {
description = "HomeKit Accessory Protocol implementation";
homepage = "https://github.com/ikalchev/HAP-python";
changelog = "https://github.com/ikalchev/HAP-python/blob/v${version}/CHANGELOG.md";
changelog = "https://github.com/ikalchev/HAP-python/blob/${version}/CHANGELOG.md";
license = licenses.asl20;
maintainers = with maintainers; [ oro ];
};