about summary refs log tree commit diff
path: root/pkgs/development/python-modules/pecan/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/python-modules/pecan/default.nix')
-rw-r--r--pkgs/development/python-modules/pecan/default.nix39
1 files changed, 18 insertions, 21 deletions
diff --git a/pkgs/development/python-modules/pecan/default.nix b/pkgs/development/python-modules/pecan/default.nix
index 1de099579de3..24b9cddf97b4 100644
--- a/pkgs/development/python-modules/pecan/default.nix
+++ b/pkgs/development/python-modules/pecan/default.nix
@@ -1,18 +1,19 @@
-{ lib
-, fetchPypi
-, buildPythonPackage
-, logutils
-, mako
-, webob
-, webtest
-, pythonOlder
-, pytestCheckHook
-, genshi
-, gunicorn
-, jinja2
-, sqlalchemy
-, virtualenv
-, setuptools
+{
+  lib,
+  fetchPypi,
+  buildPythonPackage,
+  logutils,
+  mako,
+  webob,
+  webtest,
+  pythonOlder,
+  pytestCheckHook,
+  genshi,
+  gunicorn,
+  jinja2,
+  sqlalchemy,
+  virtualenv,
+  setuptools,
 }:
 
 buildPythonPackage rec {
@@ -44,13 +45,9 @@ buildPythonPackage rec {
     webtest
   ];
 
-  pytestFlagsArray = [
-    "--pyargs pecan"
-  ];
+  pytestFlagsArray = [ "--pyargs pecan" ];
 
-  pythonImportsCheck = [
-    "pecan"
-  ];
+  pythonImportsCheck = [ "pecan" ];
 
   meta = with lib; {
     changelog = "https://pecan.readthedocs.io/en/latest/changes.html";