Loading
+7 −6
Original line number Diff line number Diff line
{
  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 ];
  };