Unverified Commit 137cc5dd authored by Fabian Affolter's avatar Fabian Affolter Committed by GitHub
Browse files

python313Packages.nibe: 2.21.0 -> 2.22.0 (#485140)

parents 1530cb53 5ce718f9
Loading
Loading
Loading
Loading
+7 −7
Original line number Diff line number Diff line
@@ -16,16 +16,16 @@
  tenacity,
}:

buildPythonPackage rec {
buildPythonPackage (finalAttrs: {
  pname = "nibe";
  version = "2.21.0";
  version = "2.22.0";
  pyproject = true;

  src = fetchFromGitHub {
    owner = "yozik04";
    repo = "nibe";
    tag = version;
    hash = "sha256-I4Qgwdx5alkNso0FMz4wRWZffbDQm5VblmPdwtU/jXg=";
    tag = finalAttrs.version;
    hash = "sha256-mbLasfHPPrZvL+PheMutqvIiyQQoew7dGIPGekuk0Oo=";
  };

  pythonRelaxDeps = [ "async-modbus" ];
@@ -53,15 +53,15 @@ buildPythonPackage rec {
    pytest-asyncio
    pytestCheckHook
  ]
  ++ lib.concatAttrValues optional-dependencies;
  ++ lib.flatten (builtins.attrValues finalAttrs.passthru.optional-dependencies);

  pythonImportsCheck = [ "nibe" ];

  meta = {
    description = "Library for the communication with Nibe heatpumps";
    homepage = "https://github.com/yozik04/nibe";
    changelog = "https://github.com/yozik04/nibe/releases/tag/${src.tag}";
    changelog = "https://github.com/yozik04/nibe/releases/tag/${finalAttrs.src.tag}";
    license = lib.licenses.gpl3Plus;
    maintainers = with lib.maintainers; [ fab ];
  };
}
})