nixpkgs/pkgs/tools/admin/simp_le/default.nix

33 lines
852 B
Nix
Raw Normal View History

2018-08-04 23:17:38 +00:00
{ stdenv, python3Packages, bash }:
2018-08-04 19:56:55 +00:00
2018-08-04 23:17:38 +00:00
python3Packages.buildPythonApplication rec {
2017-02-20 11:47:46 +00:00
pname = "simp_le-client";
2019-10-17 16:07:10 +00:00
version = "0.16.0";
2018-08-04 23:17:38 +00:00
src = python3Packages.fetchPypi {
2017-02-20 11:47:46 +00:00
inherit pname version;
2019-10-17 16:07:10 +00:00
sha256 = "17azqlb1xsnh9p0m75apb19j7pramgj00cf5k6fwzz2zqz0x0hpp";
};
2018-03-21 09:14:52 +00:00
postPatch = ''
2018-08-04 19:56:55 +00:00
# drop upper bound of idna requirement
sed -ri "s/'(idna)<[^']+'/'\1'/" setup.py
2018-03-21 09:14:52 +00:00
substituteInPlace simp_le.py \
--replace "/bin/sh" "${bash}/bin/sh"
'';
2017-02-20 11:47:46 +00:00
checkPhase = ''
$out/bin/simp_le --test
'';
2018-08-04 23:17:38 +00:00
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;
2018-03-20 21:26:30 +00:00
maintainers = with maintainers; [ gebner makefu ];
platforms = platforms.linux;
};
}