Unverified Commit 973f2d13 authored by Fabian Affolter's avatar Fabian Affolter Committed by GitHub
Browse files

python314Packages.aiosmtplib: migrate to finalAttrs

parent 897461dd
Loading
Loading
Loading
Loading
+4 −4
Original line number Diff line number Diff line
@@ -10,7 +10,7 @@
  trustme,
}:

buildPythonPackage rec {
buildPythonPackage (finalAttrs: {
  pname = "aiosmtplib";
  version = "5.1.0";
  pyproject = true;
@@ -18,7 +18,7 @@ buildPythonPackage rec {
  src = fetchFromGitHub {
    owner = "cole";
    repo = "aiosmtplib";
    tag = "v${version}";
    tag = "v${finalAttrs.version}";
    hash = "sha256-+aMtU8ea8yy1jxPPQGSu4kW3PX9N9qYQ90CSduPPgYc=";
  };

@@ -37,8 +37,8 @@ buildPythonPackage rec {
  meta = {
    description = "Module which provides a SMTP client";
    homepage = "https://github.com/cole/aiosmtplib";
    changelog = "https://github.com/cole/aiosmtplib/releases/tag/v${version}";
    changelog = "https://github.com/cole/aiosmtplib/releases/tag/v${finalAttrs.version}";
    license = lib.licenses.mit;
    maintainers = with lib.maintainers; [ fab ];
  };
}
})