feat: update pyload
This commit is contained in:
32
utils/pkgs/aia-chaser/default.nix
Normal file
32
utils/pkgs/aia-chaser/default.nix
Normal file
@@ -0,0 +1,32 @@
|
||||
{ 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 = [ ];
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user