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 ]; };