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

62 lines
1.3 KiB
Nix
Raw Normal View History

2020-02-27 17:46:40 +00:00
{ lib
, buildPythonPackage
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, mock, gnureadline
, pytest_xdist, pytest, pytestCheckHook, dateutil
2020-02-27 17:46:40 +00:00
}:
2015-10-31 21:01:20 +00:00
buildPythonPackage rec {
pname = "certbot";
version = "1.6.0";
src = fetchFromGitHub {
owner = pname;
repo = pname;
rev = "v${version}";
sha256 = "1y0m5qm853i6pcpb2mrf8kjkr9wr80mdrx1qmck38ayvr2v2p5lc";
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
];
2020-02-27 17:46:40 +00:00
buildInputs = [ dialog mock gnureadline ];
checkInputs = [
dateutil
pytest
pytestCheckHook
pytest_xdist
];
2015-10-31 21:01:20 +00:00
pytestFlagsArray = [ "-o cache_dir=$(mktemp -d)" ];
2015-10-31 21:01:20 +00:00
2019-12-14 18:42:16 +00:00
doCheck = true;
makeWrapperArgs = [ "--prefix PATH : ${dialog}/bin" ];
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
};
}