Merge pull request #222853 from fabaff/sendgrid-bump

python310Packages.sendgrid: 6.9.7 -> 6.10.0

authored by Fabian Affolter and committed by GitHub 7d172077 711a7655

+4 -3
+4 -3
pkgs/development/python-modules/sendgrid/default.nix
··· 13 14 buildPythonPackage rec { 15 pname = "sendgrid"; 16 - version = "6.9.7"; 17 format = "setuptools"; 18 19 disabled = pythonOlder "3.6"; ··· 21 src = fetchFromGitHub { 22 owner = pname; 23 repo = "sendgrid-python"; 24 - rev = version; 25 - hash = "sha256-Lx84jmgJz/J5MJtJyqDTVIbN6H63gD2rkJrdNeojd08="; 26 }; 27 28 propagatedBuildInputs = [ ··· 51 meta = with lib; { 52 description = "Python client for SendGrid"; 53 homepage = "https://github.com/sendgrid/sendgrid-python"; 54 license = with licenses; [ mit ]; 55 maintainers = with maintainers; [ fab ]; 56 };
··· 13 14 buildPythonPackage rec { 15 pname = "sendgrid"; 16 + version = "6.10.0"; 17 format = "setuptools"; 18 19 disabled = pythonOlder "3.6"; ··· 21 src = fetchFromGitHub { 22 owner = pname; 23 repo = "sendgrid-python"; 24 + rev = "refs/tags/${version}"; 25 + hash = "sha256-/un/m4Br0Ylk00fS/U+QKeXwM1Ix5TFedaPhCyScWvs="; 26 }; 27 28 propagatedBuildInputs = [ ··· 51 meta = with lib; { 52 description = "Python client for SendGrid"; 53 homepage = "https://github.com/sendgrid/sendgrid-python"; 54 + changelog = "https://github.com/sendgrid/sendgrid-python/blob/${version}/CHANGELOG.md"; 55 license = with licenses; [ mit ]; 56 maintainers = with maintainers; [ fab ]; 57 };