76 lines
2.0 KiB
Nix
76 lines
2.0 KiB
Nix
{ stdenv, python37Packages, fetchFromGitHub, fetchurl, dialog, autoPatchelfHook, nginx, pebble }:
|
|
|
|
|
|
python37Packages.buildPythonApplication rec {
|
|
pname = "certbot";
|
|
version = "0.39.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = pname;
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
sha256 = "1s32xg2ljz7ci78wc8rqkjvgrz7vprb7fkznrlf9a4blm55pp54c";
|
|
};
|
|
|
|
patches = [
|
|
./0001-pebble_artifacts-hardcode-pebble-location.patch
|
|
./0001-Don-t-use-distutils.StrictVersion-that-cannot-handle.patch
|
|
];
|
|
|
|
propagatedBuildInputs = with python37Packages; [
|
|
ConfigArgParse
|
|
acme
|
|
configobj
|
|
cryptography
|
|
distro
|
|
josepy
|
|
parsedatetime
|
|
psutil
|
|
pyRFC3339
|
|
pyopenssl
|
|
pytz
|
|
six
|
|
zope_component
|
|
zope_interface
|
|
];
|
|
|
|
buildInputs = [ dialog ] ++ (with python37Packages; [ mock gnureadline ]);
|
|
|
|
checkInputs = with python37Packages; [
|
|
pytest_xdist
|
|
pytest
|
|
dateutil
|
|
];
|
|
|
|
postPatch = ''
|
|
substituteInPlace certbot/notify.py --replace "/usr/sbin/sendmail" "/run/wrappers/bin/sendmail"
|
|
substituteInPlace certbot/util.py --replace "sw_vers" "/usr/bin/sw_vers"
|
|
substituteInPlace certbot-ci/certbot_integration_tests/utils/pebble_artifacts.py --replace "@pebble@" "${pebble}/bin/pebble"
|
|
'';
|
|
|
|
postInstall = ''
|
|
for i in $out/bin/*; do
|
|
wrapProgram "$i" --prefix PYTHONPATH : "$PYTHONPATH" \
|
|
--prefix PATH : "${dialog}/bin:$PATH"
|
|
done
|
|
'';
|
|
|
|
# tests currently time out, because they're trying to do network access
|
|
# Upstream issue: https://github.com/certbot/certbot/issues/7450
|
|
doCheck = false;
|
|
|
|
checkPhase = ''
|
|
PATH="$out/bin:${nginx}/bin:$PATH" pytest certbot-ci/certbot_integration_tests
|
|
'';
|
|
|
|
dontUseSetuptoolsCheck = true;
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = src.meta.homepage;
|
|
description = "ACME client that can obtain certs and extensibly update server configurations";
|
|
platforms = platforms.unix;
|
|
maintainers = [ maintainers.domenkozar ];
|
|
license = licenses.asl20;
|
|
};
|
|
}
|