Skip to content

Commit

Permalink
Merge pull request #301320 from dotlambda/python3Packages.hahomematic
Browse files Browse the repository at this point in the history
python312Packages.hahomematic: 2024.3.1 -> 2024.4.6
  • Loading branch information
fabaff authored Apr 12, 2024
2 parents 0c25008 + 85af3e0 commit 83a6732
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 13 deletions.
20 changes: 9 additions & 11 deletions pkgs/development/python-modules/hahomematic/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -13,37 +13,35 @@
, voluptuous
, websocket-client
, xmltodict
, wheel
}:

buildPythonPackage rec {
pname = "hahomematic";
version = "2024.3.1";
version = "2024.4.6";
pyproject = true;

disabled = pythonOlder "3.11";
disabled = pythonOlder "3.12";

src = fetchFromGitHub {
owner = "danielperna84";
repo = "hahomematic";
rev = "refs/tags/${version}";
hash = "sha256-/ulqUyplNu8YTHJKcfNPYzyzPvGkLFtoJDu5SqvfQrs=";
hash = "sha256-w+sSaadbbfc1cNCTx5YYIm8eAKRQxyqZZKK2QPFZv7Y=";
};

__darwinAllowLocalNetworking = true;

postPatch = ''
substituteInPlace pyproject.toml \
--replace-fail "setuptools~=69.1.0" "setuptools" \
--replace-fail "wheel~=0.42.0" "wheel"
--replace-fail "setuptools~=69.2.0" "setuptools" \
--replace-fail "wheel~=0.43.0" "wheel"
'';

nativeBuildInputs = [
build-system = [
setuptools
wheel
];

propagatedBuildInputs = [
dependencies = [
aiohttp
orjson
python-slugify
Expand All @@ -64,8 +62,8 @@ buildPythonPackage rec {
meta = with lib; {
description = "Python module to interact with HomeMatic devices";
homepage = "https://github.com/danielperna84/hahomematic";
changelog = "https://github.com/danielperna84/hahomematic/releases/tag/${version}";
license = with licenses; [ mit ];
changelog = "https://github.com/danielperna84/hahomematic/blob/${src.rev}/changelog.md";
license = licenses.mit;
maintainers = with maintainers; [ dotlambda fab ];
};
}
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,13 @@
buildHomeAssistantComponent rec {
owner = "danielperna84";
domain = "homematicip_local";
version = "1.58.0";
version = "1.59.0";

src = fetchFromGitHub {
owner = "danielperna84";
repo = "custom_homematic";
rev = "refs/tags/${version}";
hash = "sha256-ianM29eF2MN2THS3CTg4tBkd+8pV/m1fg8VvMDhhadg=";
hash = "sha256-fVOx/ONE+XXluXrImZWoD630EK/FOLb/Ft/L7t2Ua8o=";
};

dependencies = [
Expand Down

0 comments on commit 83a6732

Please sign in to comment.