33 lines
639 B
Nix
33 lines
639 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
, cryptography
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "aia-chaser";
|
|
version = "3.3.0";
|
|
format = "wheel";
|
|
|
|
src = fetchPypi {
|
|
pname = "aia_chaser";
|
|
inherit version format;
|
|
dist = "py3";
|
|
python = "py3";
|
|
hash = "sha256-L0aBV3kfAVI1aJH7VgiiEXzGBSP/HU2zAlahkHeT8hk=";
|
|
};
|
|
|
|
dependencies = [
|
|
cryptography
|
|
];
|
|
|
|
pythonImportsCheck = [ "aia_chaser" ];
|
|
|
|
meta = with lib; {
|
|
description = "Retrieve missing certificates to complete SSL certificate chains";
|
|
homepage = "https://github.com/dirkjanm/aia-chaser";
|
|
license = licenses.mit;
|
|
maintainers = [ ];
|
|
};
|
|
}
|