9 buildPythonPackage rec {
10 pname = "cert-chain-resolver";
13 src = fetchFromGitHub {
15 repo = "python-certificate-chain-resolver";
17 sha256 = "1kmig4ksbx1wvgcjn4r9jjg2pn1ag5rq871bjwxkp9kslb3x3d1l";
20 propagatedBuildInputs = [ cryptography ];
22 checkInputs = [ pytestCheckHook pytest-mock ];
26 "test_cert_returns_completed_chain"
27 "test_display_flag_is_properly_formatted"
31 homepage = "https://github.com/rkoopmans/python-certificate-chain-resolver";
32 description = "Resolve / obtain the certificate intermediates of a x509 certificate";
33 license = licenses.mit;
34 maintainers = with maintainers; [ veehaitch ];