Merge pull request #51690 from dtzWill/update/acme-0.29.1

certbot, acme: 0.24.0 -> 0.30.2
This commit is contained in:
Will Dietz
2019-02-11 17:38:35 -06:00
committed by GitHub
2 changed files with 16 additions and 17 deletions

View File

@@ -1,6 +1,6 @@
{ buildPythonPackage
, certbot
, nose
, pytest
, cryptography
, pyasn1
, pyopenssl
@@ -8,6 +8,7 @@
, josepy
, pytz
, requests
, requests-toolbelt
, six
, werkzeug
, mock
@@ -20,13 +21,13 @@ buildPythonPackage rec {
pname = "acme";
propagatedBuildInputs = [
cryptography pyasn1 pyopenssl pyRFC3339 pytz requests six werkzeug mock
ndg-httpsclient josepy
cryptography pyasn1 pyopenssl pyRFC3339 pytz requests requests-toolbelt six
werkzeug mock ndg-httpsclient josepy
];
checkInputs = [ nose ];
checkInputs = [ pytest ];
postUnpack = "sourceRoot=\${sourceRoot}/acme";
sourceRoot = "source/${pname}";
meta = certbot.meta // {
description = "ACME protocol implementation in Python";