about summary refs log tree commit diff
path: root/pkgs/development/python-modules/calysto-scheme/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/python-modules/calysto-scheme/default.nix')
-rw-r--r--pkgs/development/python-modules/calysto-scheme/default.nix19
1 files changed, 9 insertions, 10 deletions
diff --git a/pkgs/development/python-modules/calysto-scheme/default.nix b/pkgs/development/python-modules/calysto-scheme/default.nix
index 1e0dc0cd102d..8c857d45e4f9 100644
--- a/pkgs/development/python-modules/calysto-scheme/default.nix
+++ b/pkgs/development/python-modules/calysto-scheme/default.nix
@@ -1,9 +1,10 @@
-{ lib
-, buildPythonPackage
-, fetchFromGitHub
-, metakernel
-, pytestCheckHook
-, yasi
+{
+  lib,
+  buildPythonPackage,
+  fetchFromGitHub,
+  metakernel,
+  pytestCheckHook,
+  yasi,
 }:
 
 buildPythonPackage rec {
@@ -23,14 +24,12 @@ buildPythonPackage rec {
     metakernel
   ];
 
-  nativeCheckInputs = [
-    pytestCheckHook
-  ];
+  nativeCheckInputs = [ pytestCheckHook ];
 
   pythonImportsCheck = [ "calysto_scheme" ];
 
   meta = with lib; {
-    description = "A Scheme kernel for Jupyter that can use Python libraries";
+    description = "Scheme kernel for Jupyter that can use Python libraries";
     homepage = "https://github.com/Calysto/calysto_scheme";
     changelog = "https://github.com/Calysto/calysto_scheme/blob/${src.rev}/ChangeLog.md";
     license = licenses.bsd3;