acme: add new deps on requests-toolbelt, pytest; fix

This commit is contained in:
Will Dietz 2018-12-07 20:41:13 -06:00
parent 4be1d9a444
commit ea9853d790

View file

@ -1,6 +1,7 @@
{ buildPythonPackage
, certbot
, nose
, pytest
, cryptography
, pyasn1
, pyopenssl
@ -8,6 +9,7 @@
, josepy
, pytz
, requests
, requests-toolbelt
, six
, werkzeug
, mock
@ -20,11 +22,11 @@ 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 = [ nose pytest ];
postUnpack = "sourceRoot=\${sourceRoot}/acme";