summaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules/bash-kernel/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/python-modules/bash-kernel/default.nix')
-rw-r--r--pkgs/development/python-modules/bash-kernel/default.nix27
1 files changed, 13 insertions, 14 deletions
diff --git a/pkgs/development/python-modules/bash-kernel/default.nix b/pkgs/development/python-modules/bash-kernel/default.nix
index 57f28860fca9..8ed6a8c79cfe 100644
--- a/pkgs/development/python-modules/bash-kernel/default.nix
+++ b/pkgs/development/python-modules/bash-kernel/default.nix
@@ -1,13 +1,14 @@
-{ lib
-, buildPythonPackage
-, fetchPypi
-, fetchpatch
-, flit-core
-, ipykernel
-, python
-, pexpect
-, bashInteractive
-, substituteAll
+{
+ lib,
+ buildPythonPackage,
+ fetchPypi,
+ fetchpatch,
+ flit-core,
+ ipykernel,
+ python,
+ pexpect,
+ bashInteractive,
+ substituteAll,
}:
buildPythonPackage rec {
@@ -28,9 +29,7 @@ buildPythonPackage rec {
})
];
- nativeBuildInputs = [
- flit-core
- ];
+ nativeBuildInputs = [ flit-core ];
propagatedBuildInputs = [
ipykernel
@@ -55,7 +54,7 @@ buildPythonPackage rec {
# Evaluate a test notebook with papermill
cd $(mktemp -d)
- ${python.withPackages (ps: [ps.papermill])}/bin/papermill --kernel bash ${./test.ipynb} out.ipynb
+ ${python.withPackages (ps: [ ps.papermill ])}/bin/papermill --kernel bash ${./test.ipynb} out.ipynb
runHook postCheck
'';