Skip to content

Commit c910e45

Browse files
committed
python313Packages.sendgrid: 6.12.0 -> 6.12.2
Changelog: https://github.com/sendgrid/sendgrid-python/blob/6.12.2/CHANGELOG.md
1 parent 851c8b9 commit c910e45

File tree

1 file changed

+9
-6
lines changed

1 file changed

+9
-6
lines changed

pkgs/development/python-modules/sendgrid/default.nix

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,35 +1,38 @@
11
{
22
lib,
33
buildPythonPackage,
4+
ecdsa,
45
fetchFromGitHub,
56
flask,
67
pytestCheckHook,
78
python-http-client,
89
pythonOlder,
910
pyyaml,
11+
setuptools,
1012
starkbank-ecdsa,
11-
six,
1213
werkzeug,
1314
}:
1415

1516
buildPythonPackage rec {
1617
pname = "sendgrid";
17-
version = "6.12.0";
18-
format = "setuptools";
18+
version = "6.12.2";
19+
pyproject = true;
1920

2021
disabled = pythonOlder "3.6";
2122

2223
src = fetchFromGitHub {
2324
owner = pname;
2425
repo = "sendgrid-python";
2526
tag = version;
26-
hash = "sha256-+1Tkue09C2qqCqN8lbseo2MzVbx+qDE/M/3r3Q6EXYE=";
27+
hash = "sha256-p9U/tno5LhcfhhZE4iPspN2Du0RA7vurqwxlZmTwavk=";
2728
};
2829

29-
propagatedBuildInputs = [
30+
build-system = [ setuptools ];
31+
32+
dependencies = [
33+
ecdsa
3034
python-http-client
3135
starkbank-ecdsa
32-
six
3336
];
3437

3538
nativeCheckInputs = [

0 commit comments

Comments
 (0)