summary refs log tree commit diff
path: root/pkgs/tools/admin/simp_le/default.nix
blob: fdb531736d05950929e4aa014b318dd33959b4fb (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-04-17";

  src = fetchFromGitHub {
    owner = "kuba";
    repo = "simp_le";
    rev = "3a103b76f933f9aef782a47401dd2eff5057a6f7";
    sha256 = "0x8gqazn09m30bn1l7xnf8snhbb7yz7sb09imciqmm4jqdvn797z";
  };

  propagatedBuildInputs = with pythonPackages; [ acme ];

  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;
  };
}