nixpkgs/pkgs/tools/admin/certbot/default.nix

76 lines
2 KiB
Nix
Raw Normal View History

{ stdenv, python37Packages, fetchFromGitHub, fetchurl, dialog, autoPatchelfHook, nginx, pebble }:
2015-10-31 21:01:20 +00:00
python37Packages.buildPythonApplication rec {
pname = "certbot";
version = "0.39.0";
src = fetchFromGitHub {
owner = pname;
repo = pname;
rev = "v${version}";
sha256 = "1s32xg2ljz7ci78wc8rqkjvgrz7vprb7fkznrlf9a4blm55pp54c";
2015-10-31 21:01:20 +00:00
};
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
2015-10-31 21:01:20 +00:00
];
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"
2016-12-13 11:00:27 +00:00
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"
2015-10-31 21:01:20 +00:00
'';
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;
2015-10-31 21:01:20 +00:00
meta = with stdenv.lib; {
homepage = src.meta.homepage;
2015-10-31 21:01:20 +00:00
description = "ACME client that can obtain certs and extensibly update server configurations";
platforms = platforms.unix;
maintainers = [ maintainers.domenkozar ];
2015-10-31 21:05:12 +00:00
license = licenses.asl20;
2015-10-31 21:01:20 +00:00
};
}