python313Packages.sendgrid: 6.12.4 -> 6.12.5 (#444304)

authored by Fabian Affolter and committed by GitHub 84ec873c c52e31f3

+7 -6
+7 -6
pkgs/development/python-modules/sendgrid/default.nix
··· 1 1 { 2 2 lib, 3 3 buildPythonPackage, 4 + cryptography, 4 5 ecdsa, 5 6 fetchFromGitHub, 6 7 flask, 7 8 pytestCheckHook, 8 9 python-http-client, 9 - pythonOlder, 10 10 pyyaml, 11 11 setuptools, 12 12 starkbank-ecdsa, ··· 15 15 16 16 buildPythonPackage rec { 17 17 pname = "sendgrid"; 18 - version = "6.12.4"; 18 + version = "6.12.5"; 19 19 pyproject = true; 20 20 21 - disabled = pythonOlder "3.6"; 22 - 23 21 src = fetchFromGitHub { 24 22 owner = pname; 25 23 repo = "sendgrid-python"; 26 24 tag = version; 27 - hash = "sha256-TXFoNipUVaSvNquMy9xHHu0h5qxxvWTRw4JUK4acl3E="; 25 + hash = "sha256-7r1FHcGmHRQK9mfpV3qcuZlIe7G6CIyarnpWLjduw4E="; 28 26 }; 27 + 28 + pythonRelaxDeps = [ "cryptography" ]; 29 29 30 30 build-system = [ setuptools ]; 31 31 32 32 dependencies = [ 33 + cryptography 33 34 ecdsa 34 35 python-http-client 35 36 starkbank-ecdsa ··· 54 55 description = "Python client for SendGrid"; 55 56 homepage = "https://github.com/sendgrid/sendgrid-python"; 56 57 changelog = "https://github.com/sendgrid/sendgrid-python/blob/${src.tag}/CHANGELOG.md"; 57 - license = with licenses; [ mit ]; 58 + license = licenses.mit; 58 59 maintainers = with maintainers; [ fab ]; 59 60 }; 60 61 }