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