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