1{ buildPythonPackage
2, certbot
3, cryptography
4, pyasn1
5, pyopenssl
6, pyRFC3339
7, josepy
8, pytz
9, requests
10, requests-toolbelt
11, six
12, werkzeug
13, ndg-httpsclient
14}:
15
16buildPythonPackage rec {
17 inherit (certbot) src version;
18
19 pname = "acme";
20
21 propagatedBuildInputs = [
22 cryptography pyasn1 pyopenssl pyRFC3339 pytz requests requests-toolbelt six
23 werkzeug ndg-httpsclient josepy
24 ];
25
26 # does not contain any tests
27 doCheck = false;
28 pythonImportsCheck = [ "acme" ];
29
30 sourceRoot = "source/${pname}";
31
32 meta = certbot.meta // {
33 description = "ACME protocol implementation in Python";
34 };
35}