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

python3Packages.weheat: migrate to finalAttrs

parent 81aab712
Loading
Loading
Loading
Loading
+4 −4
Original line number Diff line number Diff line
@@ -11,7 +11,7 @@
  urllib3,
}:

buildPythonPackage rec {
buildPythonPackage (finalAttrs: {
  pname = "weheat";
  version = "2026.2.28";
  pyproject = true;
@@ -19,7 +19,7 @@ buildPythonPackage rec {
  src = fetchFromGitHub {
    owner = "wefabricate";
    repo = "wh-python";
    tag = version;
    tag = finalAttrs.version;
    hash = "sha256-V29B30LztIHFbTRTqppR3kvVNwDoK4BPq5fK1blJUrU=";
  };

@@ -42,8 +42,8 @@ buildPythonPackage rec {
  meta = {
    description = "Library to interact with the weheat API";
    homepage = "https://github.com/wefabricate/wh-python";
    changelog = "https://github.com/wefabricate/wh-python/releases/tag/${src.tag}";
    changelog = "https://github.com/wefabricate/wh-python/releases/tag/${finalAttrs.src.tag}";
    license = lib.licenses.mit;
    maintainers = with lib.maintainers; [ fab ];
  };
}
})