about summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorFabian Affolter <fabian@affolter-engineering.ch>2023-11-04 10:22:21 +0100
committerGitHub <noreply@github.com>2023-11-04 10:22:21 +0100
commitdb56e155b75d21e43b0b0024e01767b737a6aabe (patch)
tree321e70fdad679014e1b80b7f6c9bb12153a685a3 /pkgs
parentddfe97ce08ed1a4302445d9ef4b73e83b012f621 (diff)
parent3757febe2fb80caa7f651828059f9af19c041d45 (diff)
Merge pull request #265327 from fabaff/aiosmtplib-bump
python311Packages.aiosmtplib: 3.0.0 -> 3.0.1
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/development/python-modules/aiosmtplib/default.nix9
1 files changed, 5 insertions, 4 deletions
diff --git a/pkgs/development/python-modules/aiosmtplib/default.nix b/pkgs/development/python-modules/aiosmtplib/default.nix
index 7eefe5fa155fd..dda58fc011e88 100644
--- a/pkgs/development/python-modules/aiosmtplib/default.nix
+++ b/pkgs/development/python-modules/aiosmtplib/default.nix
@@ -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 ];
   };