summary refs log tree commit diff
path: root/pkgs/tools/admin/simp_le/default.nix
blob: 78ae1953ad714a9ae5bde60a848619d29e1d0770 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{ stdenv, fetchFromGitHub, pythonPackages }:

pythonPackages.buildPythonApplication rec {
  name = "simp_le-2016-02-06";

  src = fetchFromGitHub {
    owner = "kuba";
    repo = "simp_le";
    rev = "8f258bc098a84b7a20c2732536d0740244d814f7";
    sha256 = "1r2c31bhj91n3cjyf01spx52vkqxi5475zzkc9s1aliy3fs3lc4r";
  };

  propagatedBuildInputs = with pythonPackages; [ acme_0_1 ];

  meta = with stdenv.lib; {
    inherit (src.meta) homepage;
    description = "Simple Let's Encrypt client";
    license = licenses.gpl3;
    maintainers = with maintainers; [ gebner nckx ];
    platforms = platforms.all;
  };
}