eaf6957cd3
GitOrigin-RevId: 4bb072f0a8b267613c127684e099a70e1f6ff106
58 lines
1.1 KiB
Nix
58 lines
1.1 KiB
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchFromGitHub
|
|
, flask
|
|
, pytestCheckHook
|
|
, python-http-client
|
|
, pythonOlder
|
|
, pyyaml
|
|
, starkbank-ecdsa
|
|
, six
|
|
, werkzeug
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "sendgrid";
|
|
version = "6.10.0";
|
|
format = "setuptools";
|
|
|
|
disabled = pythonOlder "3.6";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = pname;
|
|
repo = "sendgrid-python";
|
|
rev = "refs/tags/${version}";
|
|
hash = "sha256-/un/m4Br0Ylk00fS/U+QKeXwM1Ix5TFedaPhCyScWvs=";
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
python-http-client
|
|
starkbank-ecdsa
|
|
six
|
|
];
|
|
|
|
nativeCheckInputs = [
|
|
flask
|
|
pytestCheckHook
|
|
pyyaml
|
|
werkzeug
|
|
];
|
|
|
|
disabledTestPaths = [
|
|
# Exclude tests that require network access
|
|
"test/integ/test_sendgrid.py"
|
|
"live_test.py"
|
|
];
|
|
|
|
pythonImportsCheck = [
|
|
"sendgrid"
|
|
];
|
|
|
|
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 ];
|
|
};
|
|
}
|