2015-12-05 07:43:56 +00:00
|
|
|
{ stdenv, fetchFromGitHub, pythonPackages }:
|
|
|
|
|
2016-02-19 12:12:11 +00:00
|
|
|
pythonPackages.buildPythonApplication rec {
|
2016-05-09 15:40:19 +01:00
|
|
|
name = "simp_le-2016-04-17";
|
2015-12-05 07:43:56 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "kuba";
|
|
|
|
repo = "simp_le";
|
2016-05-09 15:40:19 +01:00
|
|
|
rev = "3a103b76f933f9aef782a47401dd2eff5057a6f7";
|
|
|
|
sha256 = "0x8gqazn09m30bn1l7xnf8snhbb7yz7sb09imciqmm4jqdvn797z";
|
2015-12-05 07:43:56 +00:00
|
|
|
};
|
|
|
|
|
2016-05-22 05:58:15 +01:00
|
|
|
propagatedBuildInputs = with pythonPackages; [ acme_0_5_0 ];
|
2015-12-05 07:43:56 +00:00
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
2016-01-15 00:28:52 +00:00
|
|
|
inherit (src.meta) homepage;
|
2015-12-05 07:43:56 +00:00
|
|
|
description = "Simple Let's Encrypt client";
|
|
|
|
license = licenses.gpl3;
|
2016-01-15 00:28:52 +00:00
|
|
|
maintainers = with maintainers; [ gebner nckx ];
|
2015-12-05 07:43:56 +00:00
|
|
|
platforms = platforms.all;
|
|
|
|
};
|
|
|
|
}
|