certbot: move to python package set, cleanup

This commit is contained in:
Florian Klink
2020-07-10 00:05:48 +02:00
parent 391a5fdc5b
commit 8ad62167e8
3 changed files with 17 additions and 15 deletions

View File

@@ -0,0 +1,61 @@
{ lib
, buildPythonPackage
, fetchFromGitHub
, ConfigArgParse, acme, configobj, cryptography, distro, josepy, parsedatetime, pyRFC3339, pyopenssl, pytz, requests, six, zope_component, zope_interface
, dialog, mock, gnureadline
, pytest_xdist, pytest, pytestCheckHook, dateutil
}:
buildPythonPackage rec {
pname = "certbot";
version = "1.6.0";
src = fetchFromGitHub {
owner = pname;
repo = pname;
rev = "v${version}";
sha256 = "1y0m5qm853i6pcpb2mrf8kjkr9wr80mdrx1qmck38ayvr2v2p5lc";
};
sourceRoot = "source/${pname}";
propagatedBuildInputs = [
ConfigArgParse
acme
configobj
cryptography
distro
josepy
parsedatetime
pyRFC3339
pyopenssl
pytz
requests
six
zope_component
zope_interface
];
buildInputs = [ dialog mock gnureadline ];
checkInputs = [
dateutil
pytest
pytestCheckHook
pytest_xdist
];
pytestFlagsArray = [ "-o cache_dir=$(mktemp -d)" ];
doCheck = true;
makeWrapperArgs = [ "--prefix PATH : ${dialog}/bin" ];
meta = with lib; {
homepage = src.meta.homepage;
description = "ACME client that can obtain certs and extensibly update server configurations";
platforms = platforms.unix;
maintainers = with maintainers; [ domenkozar ];
license = with licenses; [ asl20 ];
};
}