15 buildPythonPackage rec {
18 format = "setuptools";
20 disabled = pythonOlder "3.6";
22 src = fetchFromGitHub {
24 repo = "sendgrid-python";
26 hash = "sha256-wcQLdU80pcyEplzL8lnehtToqYiTrX1n5TjmK5zturE=";
29 propagatedBuildInputs = [
43 # Exclude tests that require network access
44 "test/integ/test_sendgrid.py"
48 pythonImportsCheck = [ "sendgrid" ];
51 description = "Python client for SendGrid";
52 homepage = "https://github.com/sendgrid/sendgrid-python";
53 changelog = "https://github.com/sendgrid/sendgrid-python/blob/${version}/CHANGELOG.md";
54 license = with licenses; [ mit ];
55 maintainers = with maintainers; [ fab ];