python313Packages.sendgrid: 6.12.4 -> 6.12.5

Changelog: https://github.com/sendgrid/sendgrid-python/blob/6.12.5/CHANGELOG.md

Changed files
+7 -6
pkgs
development
python-modules
sendgrid
+7 -6
pkgs/development/python-modules/sendgrid/default.nix
···
{
lib,
buildPythonPackage,
+
cryptography,
ecdsa,
fetchFromGitHub,
flask,
pytestCheckHook,
python-http-client,
-
pythonOlder,
pyyaml,
setuptools,
starkbank-ecdsa,
···
buildPythonPackage rec {
pname = "sendgrid";
-
version = "6.12.4";
+
version = "6.12.5";
pyproject = true;
-
disabled = pythonOlder "3.6";
-
src = fetchFromGitHub {
owner = pname;
repo = "sendgrid-python";
tag = version;
-
hash = "sha256-TXFoNipUVaSvNquMy9xHHu0h5qxxvWTRw4JUK4acl3E=";
+
hash = "sha256-7r1FHcGmHRQK9mfpV3qcuZlIe7G6CIyarnpWLjduw4E=";
};
+
+
pythonRelaxDeps = [ "cryptography" ];
build-system = [ setuptools ];
dependencies = [
+
cryptography
ecdsa
python-http-client
starkbank-ecdsa
···
description = "Python client for SendGrid";
homepage = "https://github.com/sendgrid/sendgrid-python";
changelog = "https://github.com/sendgrid/sendgrid-python/blob/${src.tag}/CHANGELOG.md";
-
license = with licenses; [ mit ];
+
license = licenses.mit;
maintainers = with maintainers; [ fab ];
};
}