Merge pull request #203185 from r-ryantm/auto-update/python310Packages.homematicip

python310Packages.homematicip: 1.0.9 -> 1.0.10

Changed files
+4 -3
pkgs
development
python-modules
homematicip
+4 -3
pkgs/development/python-modules/homematicip/default.nix
···
buildPythonPackage rec {
pname = "homematicip";
-
version = "1.0.9";
format = "setuptools";
-
disabled = pythonOlder "3.6";
src = fetchFromGitHub {
owner = "hahn-th";
repo = "homematicip-rest-api";
rev = "refs/tags/${version}";
-
hash = "sha256-pQVSbR4MLbyHQRAoCFOMnOrhuAnGRMyiXm1szHvANuA=";
};
propagatedBuildInputs = [
···
meta = with lib; {
description = "Module for the homematicIP REST API";
homepage = "https://github.com/hahn-th/homematicip-rest-api";
license = with licenses; [ gpl3Only ];
maintainers = with maintainers; [ fab ];
};
···
buildPythonPackage rec {
pname = "homematicip";
+
version = "1.0.10";
format = "setuptools";
+
disabled = pythonOlder "3.8";
src = fetchFromGitHub {
owner = "hahn-th";
repo = "homematicip-rest-api";
rev = "refs/tags/${version}";
+
hash = "sha256-CnZHR5JyZm4T6Fm5VumZJujQvEdw59c7GSwcyO7EXXY=";
};
propagatedBuildInputs = [
···
meta = with lib; {
description = "Module for the homematicIP REST API";
homepage = "https://github.com/hahn-th/homematicip-rest-api";
+
changelog = "https://github.com/hahn-th/homematicip-rest-api/releases/tag/${version}";
license = with licenses; [ gpl3Only ];
maintainers = with maintainers; [ fab ];
};