mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-05 17:56:46 +01:00
Merge pull request #146986 from fabaff/bump-sendgrid
python3Packages.sendgrid: 6.8.3 -> 6.9.1
This commit is contained in:
commit
f9997ea271
|
@ -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;
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue