about summary refs log tree commit diff
path: root/pkgs/development/python-modules/halo/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/python-modules/halo/default.nix')
-rw-r--r--pkgs/development/python-modules/halo/default.nix30
1 files changed, 19 insertions, 11 deletions
diff --git a/pkgs/development/python-modules/halo/default.nix b/pkgs/development/python-modules/halo/default.nix
index cc1d3022fcb83..a2372b73eb4cc 100644
--- a/pkgs/development/python-modules/halo/default.nix
+++ b/pkgs/development/python-modules/halo/default.nix
@@ -1,12 +1,14 @@
-{ buildPythonPackage
-, colorama
-, fetchPypi
-, isPy27
-, lib
-, log-symbols
-, six
-, spinners
-, termcolor }:
+{
+  buildPythonPackage,
+  colorama,
+  fetchPypi,
+  isPy27,
+  lib,
+  log-symbols,
+  six,
+  spinners,
+  termcolor,
+}:
 
 buildPythonPackage rec {
   pname = "halo";
@@ -19,14 +21,20 @@ buildPythonPackage rec {
     sha256 = "1mn97h370ggbc9vi6x8r6akd5q8i512y6kid2nvm67g93r9a6rvv";
   };
 
-  propagatedBuildInputs = [ colorama log-symbols termcolor six spinners ];
+  propagatedBuildInputs = [
+    colorama
+    log-symbols
+    termcolor
+    six
+    spinners
+  ];
 
   # Tests are not included in the PyPI distribution and the git repo does not have tagged releases
   doCheck = false;
   pythonImportsCheck = [ "halo" ];
 
   meta = with lib; {
-    description = "Beautiful Spinners for Terminal, IPython and Jupyter.";
+    description = "Beautiful Spinners for Terminal, IPython and Jupyter";
     homepage = "https://github.com/manrajgrover/halo";
     license = licenses.mit;
     maintainers = with maintainers; [ urbas ];