Unverified Commit 6e0f97cb authored by Fabian Affolter's avatar Fabian Affolter Committed by GitHub
Browse files

python313Packages.pyoverkiz: 1.19.3 -> 1.19.4 (#478504)

parents 63a5f3b0 0bc95ac5
Loading
Loading
Loading
Loading
+6 −6
Original line number Diff line number Diff line
@@ -13,16 +13,16 @@
  warrant-lite,
}:

buildPythonPackage rec {
buildPythonPackage (finalAttrs: {
  pname = "pyoverkiz";
  version = "1.19.3";
  version = "1.19.4";
  pyproject = true;

  src = fetchFromGitHub {
    owner = "iMicknl";
    repo = "python-overkiz-api";
    tag = "v${version}";
    hash = "sha256-h7PGtcpBcYGlqdi4grbz7KG65zZO3x8Hf/J7n271sDs=";
    tag = "v${finalAttrs.version}";
    hash = "sha256-8MU+FH6fpQREpJ0x4OXh4BIlBtWEW+fL+oQCipTk4zg=";
  };

  build-system = [ hatchling ];
@@ -46,8 +46,8 @@ buildPythonPackage rec {
  meta = {
    description = "Module to interact with the Somfy TaHoma API or other OverKiz APIs";
    homepage = "https://github.com/iMicknl/python-overkiz-api";
    changelog = "https://github.com/iMicknl/python-overkiz-api/releases/tag/${src.tag}";
    changelog = "https://github.com/iMicknl/python-overkiz-api/releases/tag/${finalAttrs.src.tag}";
    license = lib.licenses.mit;
    maintainers = with lib.maintainers; [ fab ];
  };
}
})