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

Changed files
+7 -6
pkgs
development
python-modules
eheimdigital
+7 -6
pkgs/development/python-modules/eheimdigital/default.nix
···
{
aiohttp,
buildPythonPackage,
-
fetchFromGitHub,
+
fetchFromGitea,
hatchling,
lib,
yarl,
···
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 ];
···
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 ];
};