Unverified Commit 8c01fbf8 authored by Fabian Affolter's avatar Fabian Affolter Committed by GitHub
Browse files

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

python311Packages.hap-python: 4.6.0 -> 4.7.0
parents 7f6a4eb1 7f00f80a
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -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 ];
  };