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

35 lines
948 B
Nix
Raw Normal View History

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