summaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules/comm/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/python-modules/comm/default.nix')
-rw-r--r--pkgs/development/python-modules/comm/default.nix26
1 files changed, 10 insertions, 16 deletions
diff --git a/pkgs/development/python-modules/comm/default.nix b/pkgs/development/python-modules/comm/default.nix
index 9ab4eb2c5008..130b6e908413 100644
--- a/pkgs/development/python-modules/comm/default.nix
+++ b/pkgs/development/python-modules/comm/default.nix
@@ -1,9 +1,10 @@
-{ lib
-, buildPythonPackage
-, fetchFromGitHub
-, hatchling
-, traitlets
-, pytestCheckHook
+{
+ lib,
+ buildPythonPackage,
+ fetchFromGitHub,
+ hatchling,
+ traitlets,
+ pytestCheckHook,
}:
let
@@ -21,17 +22,11 @@ buildPythonPackage {
hash = "sha256-51HSSULhbKb1NdLJ//b3Vh6sOLWp0B4KW469htpduqM=";
};
- nativeBuildInputs = [
- hatchling
- ];
+ nativeBuildInputs = [ hatchling ];
- propagatedBuildInputs = [
- traitlets
- ];
+ propagatedBuildInputs = [ traitlets ];
- nativeCheckInputs = [
- pytestCheckHook
- ];
+ nativeCheckInputs = [ pytestCheckHook ];
meta = with lib; {
description = "Jupyter Python Comm implementation, for usage in ipykernel, xeus-python etc";
@@ -40,4 +35,3 @@ buildPythonPackage {
maintainers = with maintainers; [ ];
};
}
-