summary refs log tree commit diff
path: root/pkgs/tools/admin/simp_le/default.nix
blob: b618e71568d3dac417ed349a508fb9c9bb321060 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
{ stdenv, fetchFromGitHub, fetchpatch, pythonPackages, bash }:
 
pythonPackages.buildPythonApplication rec {
  pname = "simp_le-client";
  version = "0.8.0";

  src = pythonPackages.fetchPypi {
    inherit pname version;
    sha256 = "0nv9mm99rm8i9flgfgwvmajbsxb5rm162nfxlq3wk66bbbyr6y1i";
  };

  postPatch = ''
    substituteInPlace simp_le.py \
      --replace "/bin/sh" "${bash}/bin/sh"
  '';

  checkPhase = ''
    $out/bin/simp_le --test
  '';

  propagatedBuildInputs = with pythonPackages; [ acme setuptools_scm josepy ];

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