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

66 lines
1.4 KiB
Nix
Raw Normal View History

2020-02-27 17:46:40 +00:00
{ lib
, buildPythonApplication
, fetchFromGitHub
, ConfigArgParse, acme, configobj, cryptography, distro, josepy, parsedatetime, pyRFC3339, pyopenssl, pytz, requests, six, zope_component, zope_interface
, dialog, mock, gnureadline
, pytest_xdist, pytest, dateutil
}:
2015-10-31 21:01:20 +00:00
2020-02-27 17:46:40 +00:00
buildPythonApplication rec {
pname = "certbot";
2020-02-27 17:46:40 +00:00
version = "1.3.0";
src = fetchFromGitHub {
owner = pname;
repo = pname;
rev = "v${version}";
2020-02-27 17:46:40 +00:00
sha256 = "1nzp1l63f64qqp89y1vyd4lgfhykfp5dkr6iwfiyf273y7sjwpsa";
2015-10-31 21:01:20 +00:00
};
patches = [
./0001-Don-t-use-distutils.StrictVersion-that-cannot-handle.patch
];
2020-02-27 17:46:40 +00:00
propagatedBuildInputs = [
ConfigArgParse
acme
configobj
cryptography
distro
josepy
parsedatetime
pyRFC3339
pyopenssl
pytz
2020-02-27 17:46:40 +00:00
requests
six
zope_component
zope_interface
2015-10-31 21:01:20 +00:00
];
2020-02-27 17:46:40 +00:00
buildInputs = [ dialog mock gnureadline ];
2020-02-27 17:46:40 +00:00
checkInputs = [ pytest_xdist pytest dateutil ];
2020-02-27 17:46:40 +00:00
preBuild = ''
2019-12-14 18:42:16 +00:00
cd certbot
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
'';
2019-12-14 18:42:16 +00:00
doCheck = true;
2020-02-27 17:46:40 +00:00
meta = with 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;
2020-02-27 17:46:40 +00:00
maintainers = with maintainers; [ domenkozar ];
license = with licenses; [ asl20 ];
2015-10-31 21:01:20 +00:00
};
}