Commit 2bb9a43d authored by Fabian Affolter's avatar Fabian Affolter
Browse files

python313Packages.xknx: migrate to finalAttrs

parent f4a33d43
Loading
Loading
Loading
Loading
+4 −4
Original line number Diff line number Diff line
@@ -10,7 +10,7 @@
  setuptools,
}:

buildPythonPackage rec {
buildPythonPackage (finalAttrs: {
  pname = "xknx";
  version = "3.14.0";
  pyproject = true;
@@ -18,7 +18,7 @@ buildPythonPackage rec {
  src = fetchFromGitHub {
    owner = "XKNX";
    repo = "xknx";
    tag = version;
    tag = finalAttrs.version;
    hash = "sha256-22xKxdjf0WEF2efHiGCYVhTCZ5jrD+26oqBdlxHwYdU=";
  };

@@ -55,9 +55,9 @@ buildPythonPackage rec {
      packets. It provides support for KNX/IP routing and tunneling devices.
    '';
    homepage = "https://github.com/XKNX/xknx";
    changelog = "https://github.com/XKNX/xknx/releases/tag/${src.tag}";
    changelog = "https://github.com/XKNX/xknx/releases/tag/${finalAttrs.src.tag}";
    license = lib.licenses.mit;
    maintainers = with lib.maintainers; [ fab ];
    platforms = lib.platforms.linux;
  };
}
})