about summary refs log tree commit diff
path: root/pkgs/tools/admin/simp_le/default.nix
blob: f6b352056fa0f41ada0d41d8f0fd88be9028e47f (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-2016-01-09";

  src = fetchFromGitHub {
    owner = "kuba";
    repo = "simp_le";
    rev = "b9d95e862536d1242e1ca6d7dac5691f32f11373";
    sha256 = "0l4qs0y4cbih76zrpbkn77xj17iwsm5fi83zc3p048x4hj163805";
  };

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