pythonPackages.cert-chain-resolver: init at 1.0.1

This commit is contained in:
Vincent Haupert 2021-01-14 10:36:35 +01:00
parent 721a4ecfa6
commit 1560f964a9
No known key found for this signature in database
GPG Key ID: A8B605E96F82B4E4
2 changed files with 38 additions and 0 deletions

View File

@ -0,0 +1,36 @@
{ lib
, fetchFromGitHub
, buildPythonPackage
, pytestCheckHook
, pytest-mock
, cryptography
}:
buildPythonPackage rec {
pname = "cert-chain-resolver";
version = "1.0.1";
src = fetchFromGitHub {
owner = "rkoopmans";
repo = "python-certificate-chain-resolver";
rev = version;
sha256 = "1kmig4ksbx1wvgcjn4r9jjg2pn1ag5rq871bjwxkp9kslb3x3d1l";
};
propagatedBuildInputs = [ cryptography ];
checkInputs = [ pytestCheckHook pytest-mock ];
# online tests
disabledTests = [
"test_cert_returns_completed_chain"
"test_display_flag_is_properly_formatted"
];
meta = with lib; {
homepage = "https://github.com/rkoopmans/python-certificate-chain-resolver";
description = "Resolve / obtain the certificate intermediates of a x509 certificate";
license = licenses.mit;
maintainers = with maintainers; [ veehaitch ];
};
}

View File

@ -1161,6 +1161,8 @@ in {
cerberus = callPackage ../development/python-modules/cerberus { };
cert-chain-resolver = callPackage ../development/python-modules/cert-chain-resolver { };
certbot = callPackage ../development/python-modules/certbot { };
certbot-dns-cloudflare = callPackage ../development/python-modules/certbot-dns-cloudflare { };