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 {
|
2019-02-04 03:11:03 +00:00
|
|
|
pname = "certbot";
|
2020-02-27 17:46:40 +00:00
|
|
|
version = "1.3.0";
|
2015-12-05 07:34:50 +00:00
|
|
|
|
2016-01-04 00:54:22 +00:00
|
|
|
src = fetchFromGitHub {
|
2019-02-04 03:11:03 +00:00
|
|
|
owner = pname;
|
|
|
|
repo = pname;
|
2016-01-04 00:54:22 +00:00
|
|
|
rev = "v${version}";
|
2020-02-27 17:46:40 +00:00
|
|
|
sha256 = "1nzp1l63f64qqp89y1vyd4lgfhykfp5dkr6iwfiyf273y7sjwpsa";
|
2015-10-31 21:01:20 +00:00
|
|
|
};
|
|
|
|
|
2019-10-18 18:11:49 +01:00
|
|
|
patches = [
|
2019-10-29 13:10:31 +00:00
|
|
|
./0001-Don-t-use-distutils.StrictVersion-that-cannot-handle.patch
|
2019-10-18 18:11:49 +01:00
|
|
|
];
|
|
|
|
|
2020-02-27 17:46:40 +00:00
|
|
|
propagatedBuildInputs = [
|
2016-01-04 00:54:22 +00:00
|
|
|
ConfigArgParse
|
|
|
|
acme
|
|
|
|
configobj
|
|
|
|
cryptography
|
2019-10-18 18:11:49 +01:00
|
|
|
distro
|
2019-02-04 03:11:03 +00:00
|
|
|
josepy
|
2016-01-04 00:54:22 +00:00
|
|
|
parsedatetime
|
|
|
|
pyRFC3339
|
|
|
|
pyopenssl
|
|
|
|
pytz
|
2020-02-27 17:46:40 +00:00
|
|
|
requests
|
2016-01-04 00:54:22 +00:00
|
|
|
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 ];
|
2019-10-18 18:11:49 +01:00
|
|
|
|
2020-02-27 17:46:40 +00:00
|
|
|
checkInputs = [ pytest_xdist pytest dateutil ];
|
2019-10-18 18:11:49 +01:00
|
|
|
|
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;
|
2018-06-03 21:41:36 +01:00
|
|
|
|
2020-02-27 17:46:40 +00:00
|
|
|
meta = with lib; {
|
2016-05-09 16:28:52 +01:00
|
|
|
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
|
|
|
};
|
|
|
|
}
|