From ea9853d790644f8bdf432dceb1f5cd2f58b62989 Mon Sep 17 00:00:00 2001 From: Will Dietz Date: Fri, 7 Dec 2018 20:41:13 -0600 Subject: [PATCH] acme: add new deps on requests-toolbelt, pytest; fix --- pkgs/development/python-modules/acme/default.nix | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/pkgs/development/python-modules/acme/default.nix b/pkgs/development/python-modules/acme/default.nix index 503c6f796591..b65f60745f25 100644 --- a/pkgs/development/python-modules/acme/default.nix +++ b/pkgs/development/python-modules/acme/default.nix @@ -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";