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