nixpkgs/pkgs/tools/admin/simp_le/default.nix
2019-10-20 14:15:20 +02:00

33 lines
852 B
Nix

{ stdenv, python3Packages, bash }:
python3Packages.buildPythonApplication rec {
pname = "simp_le-client";
version = "0.16.0";
src = python3Packages.fetchPypi {
inherit pname version;
sha256 = "17azqlb1xsnh9p0m75apb19j7pramgj00cf5k6fwzz2zqz0x0hpp";
};
postPatch = ''
# drop upper bound of idna requirement
sed -ri "s/'(idna)<[^']+'/'\1'/" setup.py
substituteInPlace simp_le.py \
--replace "/bin/sh" "${bash}/bin/sh"
'';
checkPhase = ''
$out/bin/simp_le --test
'';
propagatedBuildInputs = with python3Packages; [ acme setuptools_scm josepy idna ];
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.linux;
};
}