Unverified Commit 7d172077 authored by Fabian Affolter's avatar Fabian Affolter Committed by GitHub
Browse files

Merge pull request #222853 from fabaff/sendgrid-bump

python310Packages.sendgrid: 6.9.7 -> 6.10.0
parents 711a7655 b7d9a0ae
Loading
Loading
Loading
Loading
+4 −3
Original line number Diff line number Diff line
@@ -13,7 +13,7 @@

buildPythonPackage rec {
  pname = "sendgrid";
  version = "6.9.7";
  version = "6.10.0";
  format = "setuptools";

  disabled = pythonOlder "3.6";
@@ -21,8 +21,8 @@ buildPythonPackage rec {
  src = fetchFromGitHub {
    owner = pname;
    repo = "sendgrid-python";
    rev = version;
    hash = "sha256-Lx84jmgJz/J5MJtJyqDTVIbN6H63gD2rkJrdNeojd08=";
    rev = "refs/tags/${version}";
    hash = "sha256-/un/m4Br0Ylk00fS/U+QKeXwM1Ix5TFedaPhCyScWvs=";
  };

  propagatedBuildInputs = [
@@ -51,6 +51,7 @@ buildPythonPackage rec {
  meta = with lib; {
    description = "Python client for SendGrid";
    homepage = "https://github.com/sendgrid/sendgrid-python";
    changelog = "https://github.com/sendgrid/sendgrid-python/blob/${version}/CHANGELOG.md";
    license = with licenses; [ mit ];
    maintainers = with maintainers; [ fab ];
  };