Merge pull request #146986 from fabaff/bump-sendgrid

python3Packages.sendgrid: 6.8.3 -> 6.9.1
This commit is contained in:
Fabian Affolter 2021-11-22 22:18:36 +01:00 committed by GitHub
commit f9997ea271
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -11,13 +11,14 @@
buildPythonPackage rec {
pname = "sendgrid";
version = "6.8.3";
version = "6.9.1";
format = "setuptools";
src = fetchFromGitHub {
owner = pname;
repo = "sendgrid-python";
rev = version;
sha256 = "sha256-kJbpYLM+GpyAHEnO2mqULOYyxIpOrmGeSMd4wJccz/8=";
sha256 = "sha256-u7qakmJ9pKV1zonILEvMHxzMF6EaY+ZJUfh5s3TTH5w=";
};
propagatedBuildInputs = [
@ -38,14 +39,14 @@ buildPythonPackage rec {
"--ignore live_test.py"
];
pythonImportsCheck = [ "sendgrid" ];
pythonImportsCheck = [
"sendgrid"
];
meta = with lib; {
description = "Python client for SendGrid";
homepage = "https://github.com/sendgrid/sendgrid-python";
license = with licenses; [ mit ];
maintainers = with maintainers; [ fab ];
# No support for new starkbank-ecdsa releases
broken = true;
};
}