c7f94ff3ce
GitOrigin-RevId: b85ed9dcbf187b909ef7964774f8847d554fab3b
52 lines
1.1 KiB
Nix
52 lines
1.1 KiB
Nix
{ lib
|
|
, buildPythonPackage
|
|
, cryptography
|
|
, fetchFromGitHub
|
|
, pytestCheckHook
|
|
, pytest-mock
|
|
, pythonOlder
|
|
, six
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "cert-chain-resolver";
|
|
version = "1.1.0";
|
|
format = "setuptools";
|
|
|
|
disabled = pythonOlder "3.7";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "rkoopmans";
|
|
repo = "python-certificate-chain-resolver";
|
|
rev = "refs/tags/${version}";
|
|
hash = "sha256-2itpu/Ap5GNnqAiw3Cp+8rndreWlwfPd+WwM99G7U2E=";
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
cryptography
|
|
];
|
|
|
|
nativeCheckInputs = [
|
|
pytestCheckHook
|
|
pytest-mock
|
|
six
|
|
];
|
|
|
|
disabledTests = [
|
|
# Tests require network access
|
|
"test_cert_returns_completed_chain"
|
|
"test_display_flag_is_properly_formatted"
|
|
];
|
|
|
|
pythonImportsCheck = [
|
|
"cert_chain_resolver"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Resolve / obtain the certificate intermediates of a x509 certificate";
|
|
homepage = "https://github.com/rkoopmans/python-certificate-chain-resolver";
|
|
changelog = "https://github.com/rkoopmans/python-certificate-chain-resolver/blob/${version}/CHANGELOG.md";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ veehaitch ];
|
|
};
|
|
}
|