summary refs log tree commit diff
path: root/pkgs/tools/admin/simp_le/default.nix
blob: 43e361ba6471b6a853ea29d1270565f53e808aa3 (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.buildPythonPackage rec {
  name = "simp_le-20151207";

  src = fetchFromGitHub {
    owner = "kuba";
    repo = "simp_le";
    rev = "ac836bc0af988cb14dc0a83dc2039e7fa541b677";
    sha256 = "0r07mlis81n0pmj74wjcvjpi6i3lkzs6hz8iighhk8yymn1a8rbn";
  };

  propagatedBuildInputs = with pythonPackages; [ acme ];

  meta = with stdenv.lib; {
    homepage = https://github.com/kuba/simp_le;
    description = "Simple Let's Encrypt client";
    license = licenses.gpl3;
    maintainers = with maintainers; [ gebner ];
    platforms = platforms.all;
  };
}