From d7f0e70e42d97c02d071c4bd1100ec44562641b0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Robert=20Sch=C3=BCtz?= Date: Wed, 24 Sep 2025 11:17:39 -0700 Subject: [PATCH] python3Packages.eheimdigital: 1.3.0 -> 1.3.2 Diff: https://codeberg.org/autinerd/eheimdigital/compare/1.3.0...1.3.2 Changelog: https://codeberg.org/autinerd/eheimdigital/releases/tag/1.3.1 https://codeberg.org/autinerd/eheimdigital/releases/tag/1.3.2 --- .../python-modules/eheimdigital/default.nix | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/pkgs/development/python-modules/eheimdigital/default.nix b/pkgs/development/python-modules/eheimdigital/default.nix index 2a0ea80cd540..2267fd230aa4 100644 --- a/pkgs/development/python-modules/eheimdigital/default.nix +++ b/pkgs/development/python-modules/eheimdigital/default.nix @@ -1,7 +1,7 @@ { aiohttp, buildPythonPackage, - fetchFromGitHub, + fetchFromGitea, hatchling, lib, yarl, @@ -9,14 +9,15 @@ buildPythonPackage rec { pname = "eheimdigital"; - version = "1.3.0"; + version = "1.3.2"; pyproject = true; - src = fetchFromGitHub { + src = fetchFromGitea { + domain = "codeberg.org"; owner = "autinerd"; repo = "eheimdigital"; tag = version; - hash = "sha256-zpFINbhzh0SuWfapZWPTr+8qh9b0Ux0TiV4cHXQuGRM="; + hash = "sha256-wFKkfzZ4LLwWhVYigospWYBxTGAJGZWO6Wrj3bvUsc8="; }; build-system = [ hatchling ]; @@ -32,9 +33,9 @@ buildPythonPackage rec { doCheck = false; meta = { - changelog = "https://github.com/autinerd/eheimdigital/releases/tag/${src.tag}"; + changelog = "https://codeberg.org/autinerd/eheimdigital/releases/tag/${src.tag}"; description = "Offers a Python API for the EHEIM Digital smart aquarium devices"; - homepage = "https://github.com/autinerd/eheimdigital"; + homepage = "https://codeberg.org/autinerd/eheimdigital"; license = lib.licenses.mit; maintainers = with lib.maintainers; [ dotlambda ]; };