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

Merge pull request #265327 from fabaff/aiosmtplib-bump

python311Packages.aiosmtplib: 3.0.0 -> 3.0.1
parents ddfe97ce 3757febe
Loading
Loading
Loading
Loading
+5 −4
Original line number Diff line number Diff line
@@ -12,16 +12,16 @@

buildPythonPackage rec {
  pname = "aiosmtplib";
  version = "3.0.0";
  version = "3.0.1";
  format = "pyproject";

  disabled = pythonOlder "3.7";

  src = fetchFromGitHub {
    owner = "cole";
    repo = pname;
    rev = "v${version}";
    hash = "sha256-A9pvHj2riIHCd1F+ve6aLdbtl3tPPDovV1AZeWNeOEo=";
    repo = "aiosmtplib";
    rev = "refs/tags/v${version}";
    hash = "sha256-67Z+k+PBIGP2oGb/52dMtsapUsHufvFcX+wWiMj5Jsg=";
  };

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