nixpkgs/pkgs/development/python-modules/certbot/default.nix

79 lines
1.8 KiB
Nix
Raw Normal View History

2020-02-27 17:46:40 +00:00
{ lib
, buildPythonPackage
, python, runCommand
2020-02-27 17:46:40 +00:00
, fetchFromGitHub
, ConfigArgParse, acme, configobj, cryptography, distro, josepy, parsedatetime, pyRFC3339, pyopenssl, pytz, requests, six, zope_component, zope_interface
, dialog, gnureadline
, pytest-xdist, pytestCheckHook, python-dateutil
2020-02-27 17:46:40 +00:00
}:
2015-10-31 21:01:20 +00:00
buildPythonPackage rec {
pname = "certbot";
version = "1.16.0";
src = fetchFromGitHub {
owner = pname;
repo = pname;
rev = "v${version}";
sha256 = "0jdq6pvq7af2x483857qyp1qvqs4yb4nqcv66qi70glmbanhlxd4";
2015-10-31 21:01:20 +00:00
};
sourceRoot = "source/${pname}";
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
];
buildInputs = [ dialog gnureadline ];
checkInputs = [
python-dateutil
pytestCheckHook
pytest-xdist
];
2015-10-31 21:01:20 +00:00
pytestFlagsArray = [
"-o cache_dir=$(mktemp -d)"
# See https://github.com/certbot/certbot/issues/8746
"-W ignore::ResourceWarning"
];
2015-10-31 21:01:20 +00:00
2019-12-14 18:42:16 +00:00
doCheck = true;
makeWrapperArgs = [ "--prefix PATH : ${dialog}/bin" ];
# certbot.withPlugins has a similar calling convention as python*.withPackages
# it gets invoked with a lambda, and invokes that lambda with the python package set matching certbot's:
# certbot.withPlugins (cp: [ cp.certbot-dns-foo ])
passthru.withPlugins = f: let
pythonEnv = python.withPackages f;
in runCommand "certbot-with-plugins" {
} ''
mkdir -p $out/bin
cd $out/bin
ln -s ${pythonEnv}/bin/certbot
'';
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
};
}