about summary refs log tree commit diff
path: root/pkgs/development/python-modules/flasgger/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/python-modules/flasgger/default.nix')
-rw-r--r--pkgs/development/python-modules/flasgger/default.nix37
1 files changed, 17 insertions, 20 deletions
diff --git a/pkgs/development/python-modules/flasgger/default.nix b/pkgs/development/python-modules/flasgger/default.nix
index 1be41854b52e..7d52055c8956 100644
--- a/pkgs/development/python-modules/flasgger/default.nix
+++ b/pkgs/development/python-modules/flasgger/default.nix
@@ -1,18 +1,19 @@
-{ lib
-, buildPythonPackage
-, fetchFromGitHub
-, fetchpatch
+{
+  lib,
+  buildPythonPackage,
+  fetchFromGitHub,
+  fetchpatch,
 
-# dependencies
-, flask
-, jsonschema
-, mistune
-, pyyaml
-, six
-, werkzeug
+  # dependencies
+  flask,
+  jsonschema,
+  mistune,
+  pyyaml,
+  six,
+  werkzeug,
 
-# tests
-, pytestCheckHook
+  # tests
+  pytestCheckHook,
 }:
 
 buildPythonPackage rec {
@@ -49,13 +50,9 @@ buildPythonPackage rec {
     werkzeug
   ];
 
-  pythonImportsCheck = [
-    "flasgger"
-  ];
+  pythonImportsCheck = [ "flasgger" ];
 
-  nativeCheckInputs = [
-    pytestCheckHook
-  ];
+  nativeCheckInputs = [ pytestCheckHook ];
 
   doCheck = false; # missing flex dependency
 
@@ -63,6 +60,6 @@ buildPythonPackage rec {
     description = "Easy OpenAPI specs and Swagger UI for your Flask API";
     homepage = "https://github.com/flasgger/flasgger/";
     license = licenses.mit;
-    maintainers = with maintainers; [ ];
+    maintainers = [ ];
   };
 }