From 4fee50025618c4e8135fccce190c62afce1546c9 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Mon, 26 Jun 2023 08:29:38 +0200 Subject: [PATCH] python311Packages.fastapi-mail: 1.2.8 -> 1.3.0 Changelog: https://github.com/sabuhish/fastapi-mail/releases/tag/1.3.0 --- .../python-modules/fastapi-mail/default.nix | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/pkgs/development/python-modules/fastapi-mail/default.nix b/pkgs/development/python-modules/fastapi-mail/default.nix index d158547750f0..4ca32c0d5afa 100644 --- a/pkgs/development/python-modules/fastapi-mail/default.nix +++ b/pkgs/development/python-modules/fastapi-mail/default.nix @@ -19,25 +19,23 @@ buildPythonPackage rec { pname = "fastapi-mail"; - version = "1.2.8"; + version = "1.3.0"; format = "pyproject"; - disabled = pythonOlder "3.7"; + disabled = pythonOlder "3.8"; src = fetchFromGitHub { owner = "sabuhish"; repo = pname; rev = "refs/tags/${version}"; - hash = "sha256-9u7+TYO0TmzyLcCxZL86ibC3hNH5b722t5fWimRHaW0="; + hash = "sha256-ttVzjmMZe1iWn2J7N5pcol4GFnKv3CB3DOQkZU2HnHg="; }; postPatch = '' substituteInPlace pyproject.toml \ - --replace 'version = "1.2.2"' 'version = "${version}"' \ + --replace 'version = "1.2.5"' 'version = "${version}"' \ --replace 'aiosmtplib = "^2.0"' 'aiosmtplib = "*"' \ --replace 'pydantic = "^1.8"' 'pydantic = "*"' \ - --replace 'starlette = "^0.22.0"' 'starlette = "*"' \ - --replace 'black = "^22.12.0"' "" ''; nativeBuildInputs = [