about summary refs log tree commit diff
path: root/pkgs/development/python-modules/invoke/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/python-modules/invoke/default.nix')
-rw-r--r--pkgs/development/python-modules/invoke/default.nix17
1 files changed, 8 insertions, 9 deletions
diff --git a/pkgs/development/python-modules/invoke/default.nix b/pkgs/development/python-modules/invoke/default.nix
index bf23cfbbcdd56..019ebd243f2cd 100644
--- a/pkgs/development/python-modules/invoke/default.nix
+++ b/pkgs/development/python-modules/invoke/default.nix
@@ -1,8 +1,9 @@
-{ lib
-, bash
-, buildPythonPackage
-, fetchPypi
-, stdenv
+{
+  lib,
+  bash,
+  buildPythonPackage,
+  fetchPypi,
+  stdenv,
 }:
 
 buildPythonPackage rec {
@@ -22,9 +23,7 @@ buildPythonPackage rec {
   # errors with vendored libs
   doCheck = false;
 
-  pythonImportsCheck = [
-    "invoke"
-  ];
+  pythonImportsCheck = [ "invoke" ];
 
   postInstall = lib.optionalString (stdenv.buildPlatform.canExecute stdenv.hostPlatform) ''
     mkdir -p $out/share/{bash-completion/completions,fish/vendor_completions.d,zsh/site-functions}
@@ -38,6 +37,6 @@ buildPythonPackage rec {
     description = "Pythonic task execution";
     homepage = "https://www.pyinvoke.org/";
     license = licenses.bsd2;
-    maintainers = with maintainers; [ ];
+    maintainers = [ ];
   };
 }