Merge pull request #37493 from makefu/pkgs/simp_le/0.8.0

simp_le: 0.6.1 -> 0.8.0
This commit is contained in:
Jörg Thalheim
2018-03-21 12:03:59 +00:00
committed by GitHub
5 changed files with 71 additions and 17 deletions

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"

View File

@@ -1,26 +1,31 @@
{ stdenv, fetchFromGitHub, fetchpatch, pythonPackages }:
{ stdenv, fetchFromGitHub, fetchpatch, pythonPackages, bash }:
pythonPackages.buildPythonApplication rec {
pname = "simp_le-client";
version = "0.6.1";
name = "${pname}-${version}";
version = "0.8.0";
src = pythonPackages.fetchPypi {
inherit pname version;
sha256 = "0x4fky9jizs3xi55cdy217cvm3ikpghiabysan71b07ackkdfj6k";
sha256 = "0nv9mm99rm8i9flgfgwvmajbsxb5rm162nfxlq3wk66bbbyr6y1i";
};
postPatch = ''
substituteInPlace simp_le.py \
--replace "/bin/sh" "${bash}/bin/sh"
'';
checkPhase = ''
$out/bin/simp_le --test
'';
propagatedBuildInputs = with pythonPackages; [ acme setuptools_scm ];
propagatedBuildInputs = with pythonPackages; [ acme setuptools_scm josepy ];
meta = with stdenv.lib; {
homepage = https://github.com/zenhack/simp_le;
description = "Simple Let's Encrypt client";
license = licenses.gpl3;
maintainers = with maintainers; [ gebner ];
maintainers = with maintainers; [ gebner makefu ];
platforms = platforms.all;
};
}