about summary refs log tree commit diff
path: root/pkgs/development/python-modules/handout/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/python-modules/handout/default.nix')
-rw-r--r--pkgs/development/python-modules/handout/default.nix14
1 files changed, 11 insertions, 3 deletions
diff --git a/pkgs/development/python-modules/handout/default.nix b/pkgs/development/python-modules/handout/default.nix
index b42a8f018a30..975e3003ba59 100644
--- a/pkgs/development/python-modules/handout/default.nix
+++ b/pkgs/development/python-modules/handout/default.nix
@@ -1,5 +1,10 @@
-{ lib, buildPythonPackage, fetchPypi
-, imageio, imageio-ffmpeg }:
+{
+  lib,
+  buildPythonPackage,
+  fetchPypi,
+  imageio,
+  imageio-ffmpeg,
+}:
 
 buildPythonPackage rec {
   pname = "handout";
@@ -11,7 +16,10 @@ buildPythonPackage rec {
     sha256 = "52daaf1f9a4cb2ceb88c1dedf85d22ef449b9422b424a2534d21f941e57bc915";
   };
 
-  propagatedBuildInputs = [ imageio imageio-ffmpeg ];
+  propagatedBuildInputs = [
+    imageio
+    imageio-ffmpeg
+  ];
 
   meta = with lib; {
     description = "Turn Python scripts into handouts with Markdown and figures";