about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/jupyter-console/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/development/python-modules/jupyter-console/default.nix')
-rw-r--r--nixpkgs/pkgs/development/python-modules/jupyter-console/default.nix77
1 files changed, 77 insertions, 0 deletions
diff --git a/nixpkgs/pkgs/development/python-modules/jupyter-console/default.nix b/nixpkgs/pkgs/development/python-modules/jupyter-console/default.nix
new file mode 100644
index 000000000000..e847c341f4d8
--- /dev/null
+++ b/nixpkgs/pkgs/development/python-modules/jupyter-console/default.nix
@@ -0,0 +1,77 @@
+{ lib
+, buildPythonPackage
+, fetchPypi
+, pythonOlder
+, substituteAll
+, hatchling
+, ipykernel
+, ipython
+, jupyter-client
+, jupyter-core
+, prompt-toolkit
+, pygments
+, pyzmq
+, traitlets
+, flaky
+, pexpect
+, pytestCheckHook
+}:
+
+buildPythonPackage rec {
+  pname = "jupyter-console";
+  version = "6.6.3";
+  format = "pyproject";
+
+  disabled = pythonOlder "3.7";
+
+  src = fetchPypi {
+    pname = "jupyter_console";
+    inherit version;
+    hash = "sha256-VmpL8xyHrb+t8izfhG4wabWace1dpx1rpNiqrRSlNTk=";
+  };
+
+  nativeBuildInputs = [
+    hatchling
+  ];
+
+  postPatch = ''
+    # use wrapped executable in tests
+    substituteInPlace jupyter_console/tests/test_console.py \
+      --replace "args = ['-m', 'jupyter_console', '--colors=NoColor']" "args = ['--colors=NoColor']" \
+      --replace "cmd = sys.executable" "cmd = '${placeholder "out"}/bin/jupyter-console'" \
+      --replace "check_output([sys.executable, '-m', 'jupyter_console'," "check_output(['${placeholder "out"}/bin/jupyter-console',"
+  '';
+
+  propagatedBuildInputs = [
+    ipykernel
+    ipython
+    jupyter-client
+    jupyter-core
+    prompt-toolkit
+    pygments
+    pyzmq
+    traitlets
+  ];
+
+  pythonImportsCheck = [
+    "jupyter_console"
+  ];
+
+  nativeCheckInputs = [
+    flaky
+    pexpect
+    pytestCheckHook
+  ];
+
+  preCheck = ''
+    export HOME=$TMPDIR
+  '';
+
+  meta = {
+    description = "Jupyter terminal console";
+    homepage = "https://github.com/jupyter/jupyter_console";
+    changelog = "https://github.com/jupyter/jupyter_console/releases/tag/v${version}";
+    license = lib.licenses.bsd3;
+    maintainers = lib.teams.jupyter.members;
+  };
+}