aboutsummaryrefslogtreecommitdiff
path: root/nixpkgs/pkgs/tools/admin/certbot/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/tools/admin/certbot/default.nix')
-rw-r--r--nixpkgs/pkgs/tools/admin/certbot/default.nix65
1 files changed, 0 insertions, 65 deletions
diff --git a/nixpkgs/pkgs/tools/admin/certbot/default.nix b/nixpkgs/pkgs/tools/admin/certbot/default.nix
deleted file mode 100644
index cabf335fb69..00000000000
--- a/nixpkgs/pkgs/tools/admin/certbot/default.nix
+++ /dev/null
@@ -1,65 +0,0 @@
-{ lib
-, buildPythonApplication
-, fetchFromGitHub
-, ConfigArgParse, acme, configobj, cryptography, distro, josepy, parsedatetime, pyRFC3339, pyopenssl, pytz, requests, six, zope_component, zope_interface
-, dialog, mock, gnureadline
-, pytest_xdist, pytest, dateutil
-}:
-
-buildPythonApplication rec {
- pname = "certbot";
- version = "1.3.0";
-
- src = fetchFromGitHub {
- owner = pname;
- repo = pname;
- rev = "v${version}";
- sha256 = "1nzp1l63f64qqp89y1vyd4lgfhykfp5dkr6iwfiyf273y7sjwpsa";
- };
-
- patches = [
- ./0001-Don-t-use-distutils.StrictVersion-that-cannot-handle.patch
- ];
-
- propagatedBuildInputs = [
- ConfigArgParse
- acme
- configobj
- cryptography
- distro
- josepy
- parsedatetime
- pyRFC3339
- pyopenssl
- pytz
- requests
- six
- zope_component
- zope_interface
- ];
-
- buildInputs = [ dialog mock gnureadline ];
-
- checkInputs = [ pytest_xdist pytest dateutil ];
-
- preBuild = ''
- cd certbot
- '';
-
- postInstall = ''
- for i in $out/bin/*; do
- wrapProgram "$i" --prefix PYTHONPATH : "$PYTHONPATH" \
- --prefix PATH : "${dialog}/bin:$PATH"
- done
- '';
-
- doCheck = true;
-
- 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 ];
- };
-}