about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/pylint-flask
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/development/python-modules/pylint-flask')
-rw-r--r--nixpkgs/pkgs/development/python-modules/pylint-flask/default.nix31
1 files changed, 13 insertions, 18 deletions
diff --git a/nixpkgs/pkgs/development/python-modules/pylint-flask/default.nix b/nixpkgs/pkgs/development/python-modules/pylint-flask/default.nix
index 0928e0bd07e1..375d1e175774 100644
--- a/nixpkgs/pkgs/development/python-modules/pylint-flask/default.nix
+++ b/nixpkgs/pkgs/development/python-modules/pylint-flask/default.nix
@@ -1,11 +1,12 @@
-{ lib
-, astroid
-, buildPythonPackage
-, fetchPypi
-, pylint
-, pylint-plugin-utils
-, pythonOlder
-, setuptools
+{
+  lib,
+  astroid,
+  buildPythonPackage,
+  fetchPypi,
+  pylint,
+  pylint-plugin-utils,
+  pythonOlder,
+  setuptools,
 }:
 
 buildPythonPackage rec {
@@ -20,13 +21,9 @@ buildPythonPackage rec {
     hash = "sha256-9Nl94iFr97/OB8nAixZul4/p8nJd4qUKmEWpfefjFRc=";
   };
 
-  nativeBuildInputs = [
-    setuptools
-  ];
+  nativeBuildInputs = [ setuptools ];
 
-  buildInputs = [
-    pylint
-  ];
+  buildInputs = [ pylint ];
 
   propagatedBuildInputs = [
     astroid
@@ -37,12 +34,10 @@ buildPythonPackage rec {
   # also tests are only available at GitHub, with an old release tag
   doCheck = false;
 
-  pythonImportsCheck = [
-    "pylint_flask"
-  ];
+  pythonImportsCheck = [ "pylint_flask" ];
 
   meta = with lib; {
-    description = "A Pylint plugin to analyze Flask applications";
+    description = "Pylint plugin to analyze Flask applications";
     homepage = "https://github.com/jschaf/pylint-flask";
     license = licenses.gpl2Only;
     maintainers = with maintainers; [ kamadorueda ];