aboutsummaryrefslogtreecommitdiff
path: root/nixpkgs/pkgs/development/python-modules/certbot/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/development/python-modules/certbot/default.nix')
-rw-r--r--nixpkgs/pkgs/development/python-modules/certbot/default.nix75
1 files changed, 75 insertions, 0 deletions
diff --git a/nixpkgs/pkgs/development/python-modules/certbot/default.nix b/nixpkgs/pkgs/development/python-modules/certbot/default.nix
new file mode 100644
index 00000000000..07ceea731b9
--- /dev/null
+++ b/nixpkgs/pkgs/development/python-modules/certbot/default.nix
@@ -0,0 +1,75 @@
+{ lib
+, buildPythonPackage
+, python, runCommand
+, 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.7.0";
+
+ src = fetchFromGitHub {
+ owner = pname;
+ repo = pname;
+ rev = "v${version}";
+ sha256 = "1fx29gsa3glwh0ik5k2gynwdz6i3ckq9aakf6ip92n3qyh6l08a8";
+ };
+
+ 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" ];
+
+ # 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
+ '';
+
+ 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 ];
+ };
+}