diff options
Diffstat (limited to 'pkgs/development/python-modules/acme/default.nix')
-rw-r--r-- | pkgs/development/python-modules/acme/default.nix | 40 |
1 files changed, 25 insertions, 15 deletions
diff --git a/pkgs/development/python-modules/acme/default.nix b/pkgs/development/python-modules/acme/default.nix index 65e930e07414..0b3ad8d27480 100644 --- a/pkgs/development/python-modules/acme/default.nix +++ b/pkgs/development/python-modules/acme/default.nix @@ -1,16 +1,17 @@ -{ buildPythonPackage -, certbot -, cryptography -, pyasn1 -, pyopenssl -, pyrfc3339 -, josepy -, pytz -, requests -, requests-toolbelt -, six -, werkzeug -, ndg-httpsclient +{ + buildPythonPackage, + certbot, + cryptography, + pyasn1, + pyopenssl, + pyrfc3339, + josepy, + pytz, + requests, + requests-toolbelt, + six, + werkzeug, + ndg-httpsclient, }: buildPythonPackage rec { @@ -20,8 +21,17 @@ buildPythonPackage rec { format = "setuptools"; propagatedBuildInputs = [ - cryptography pyasn1 pyopenssl pyrfc3339 pytz requests requests-toolbelt six - werkzeug ndg-httpsclient josepy + cryptography + pyasn1 + pyopenssl + pyrfc3339 + pytz + requests + requests-toolbelt + six + werkzeug + ndg-httpsclient + josepy ]; # does not contain any tests |