From 0910a27b9cc58ef9bf1c76556599bb9811b7b91a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Robert=20Sch=C3=BCtz?= Date: Mon, 12 May 2025 12:59:37 -0700 Subject: [PATCH] python313Packages.bluecurrent-api: 1.2.3 -> 1.2.4 Diff: https://github.com/bluecurrent/HomeAssistantAPI/compare/refs/tags/v1.2.3...refs/tags/v1.2.4 --- .../python-modules/bluecurrent-api/default.nix | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/pkgs/development/python-modules/bluecurrent-api/default.nix b/pkgs/development/python-modules/bluecurrent-api/default.nix index a42998c1d318..dc42e6e2266d 100644 --- a/pkgs/development/python-modules/bluecurrent-api/default.nix +++ b/pkgs/development/python-modules/bluecurrent-api/default.nix @@ -2,7 +2,7 @@ lib, buildPythonPackage, pythonOlder, - fetchPypi, + fetchFromGitHub, setuptools, pytz, websockets, @@ -13,14 +13,16 @@ buildPythonPackage rec { pname = "bluecurrent-api"; - version = "1.2.3"; + version = "1.2.4"; pyproject = true; disabled = pythonOlder "3.11"; - src = fetchPypi { - inherit pname version; - hash = "sha256-mWRTSMS68+J1Z4PYOFF/UvofSqV1wv0gjiTACEWDfNg="; + src = fetchFromGitHub { + owner = "bluecurrent"; + repo = "HomeAssistantAPI"; + tag = "v${version}"; + hash = "sha256-NirWs06CkiSE3HPomQwBmX+XFhBxsM6ffE72mvlfxoY="; }; build-system = [ setuptools ];