python312Packages.resend: 2.6.0 -> 2.7.0 (#395665)

Changed files
+3 -3
pkgs
development
python-modules
resend
+3 -3
pkgs/development/python-modules/resend/default.nix
···
buildPythonPackage rec {
pname = "resend";
-
version = "2.6.0";
pyproject = true;
disabled = pythonOlder "3.7";
···
owner = "resend";
repo = "resend-python";
tag = "v${version}";
-
hash = "sha256-Sxe1TS/MahzKObPpo4+Iq+jbIuw4H1NJ3oU74MXZByQ=";
};
build-system = [ setuptools ];
···
meta = with lib; {
description = "SDK for Resend";
homepage = "https://github.com/resend/resend-python";
-
changelog = "https://github.com/resend/resend-python/releases/tag/v${version}";
license = licenses.mit;
maintainers = with maintainers; [ fab ];
};
···
buildPythonPackage rec {
pname = "resend";
+
version = "2.7.0";
pyproject = true;
disabled = pythonOlder "3.7";
···
owner = "resend";
repo = "resend-python";
tag = "v${version}";
+
hash = "sha256-Uo8Shryw365l1970R0VpvGPAJOTxuJy6ZjIE2pcZkGs=";
};
build-system = [ setuptools ];
···
meta = with lib; {
description = "SDK for Resend";
homepage = "https://github.com/resend/resend-python";
+
changelog = "https://github.com/resend/resend-python/releases/tag/${src.tag}";
license = licenses.mit;
maintainers = with maintainers; [ fab ];
};