Fabian Affolter 2024-01-17 12:09:26 +01:00
parent 84f95e5a14
commit 416aef0843

View File

@ -11,24 +11,31 @@
, pytest-aiohttp , pytest-aiohttp
, pytest-asyncio , pytest-asyncio
, requests , requests
, setuptools
, setuptools-scm
, websocket-client , websocket-client
, websockets , websockets
}: }:
buildPythonPackage rec { buildPythonPackage rec {
pname = "homematicip"; pname = "homematicip";
version = "1.0.16"; version = "1.1.0";
format = "setuptools"; pyproject = true;
disabled = pythonOlder "3.8"; disabled = pythonOlder "3.10";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "hahn-th"; owner = "hahn-th";
repo = "homematicip-rest-api"; repo = "homematicip-rest-api";
rev = "refs/tags/${version}"; rev = "refs/tags/${version}";
hash = "sha256-rvjdhsvGYllVeenVkU/ikwil4OVHPRIaXs+85q0pM/w="; hash = "sha256-tx7/amXG3rLdUFgRPQcuf57qkBLAPxPWjLGSO7MrcWU=";
}; };
nativeBuildInputs = [
setuptools
setuptools-scm
];
propagatedBuildInputs = [ propagatedBuildInputs = [
aenum aenum
aiohttp aiohttp