certbot: 0.19.0 -> 0.22.2

This commit is contained in:
makefu
2018-03-20 22:25:50 +01:00
parent 7a0027804c
commit e9f176a09a
2 changed files with 22 additions and 10 deletions
+6 -6
View File
@@ -1,19 +1,19 @@
{ stdenv, python2Packages, fetchFromGitHub, dialog }:
{ stdenv, pythonPackages, fetchFromGitHub, dialog }:
# Latest version of certbot supports python3 and python3 version of pythondialog
python2Packages.buildPythonApplication rec {
pythonPackages.buildPythonApplication rec {
name = "certbot-${version}";
version = "0.19.0";
version = "0.22.2";
src = fetchFromGitHub {
owner = "certbot";
repo = "certbot";
rev = "v${version}";
sha256 = "14i3q59v7j0q2pa1dri420fhil4h0vgl4vb471hp81f4y14gq6h7";
sha256 = "08x80x9d71j84mwjm5wzd0x5gcw6gwyvkvadi2js39js6hfnc6jg";
};
propagatedBuildInputs = with python2Packages; [
propagatedBuildInputs = with pythonPackages; [
ConfigArgParse
acme
configobj
@@ -28,7 +28,7 @@ python2Packages.buildPythonApplication rec {
zope_component
zope_interface
];
buildInputs = [ dialog ] ++ (with python2Packages; [ nose mock gnureadline ]);
buildInputs = [ dialog ] ++ (with pythonPackages; [ nose mock gnureadline ]);
patchPhase = ''
substituteInPlace certbot/notify.py --replace "/usr/sbin/sendmail" "/run/wrappers/bin/sendmail"