From 416aef0843fc8b7b5758a932aa16e68449d4d272 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Wed, 17 Jan 2024 12:09:26 +0100 Subject: [PATCH] python311Packages.homematicip: 1.0.16 -> 1.1.0 Diff: https://github.com/hahn-th/homematicip-rest-api/compare/refs/tags/1.0.16...1.1.0 Changelog: https://github.com/hahn-th/homematicip-rest-api/releases/tag/1.1.0 --- .../python-modules/homematicip/default.nix | 15 +++++++++++---- 1 file changed, 11 insertions(+), 4 deletions(-) diff --git a/pkgs/development/python-modules/homematicip/default.nix b/pkgs/development/python-modules/homematicip/default.nix index f0260f04d3c8..ca5355fcb9a8 100644 --- a/pkgs/development/python-modules/homematicip/default.nix +++ b/pkgs/development/python-modules/homematicip/default.nix @@ -11,24 +11,31 @@ , pytest-aiohttp , pytest-asyncio , requests +, setuptools +, setuptools-scm , websocket-client , websockets }: buildPythonPackage rec { pname = "homematicip"; - version = "1.0.16"; - format = "setuptools"; + version = "1.1.0"; + pyproject = true; - disabled = pythonOlder "3.8"; + disabled = pythonOlder "3.10"; src = fetchFromGitHub { owner = "hahn-th"; repo = "homematicip-rest-api"; rev = "refs/tags/${version}"; - hash = "sha256-rvjdhsvGYllVeenVkU/ikwil4OVHPRIaXs+85q0pM/w="; + hash = "sha256-tx7/amXG3rLdUFgRPQcuf57qkBLAPxPWjLGSO7MrcWU="; }; + nativeBuildInputs = [ + setuptools + setuptools-scm + ]; + propagatedBuildInputs = [ aenum aiohttp