summary refs log tree commit diff
path: root/pkgs/development
diff options
context:
space:
mode:
authorzimbatm <zimbatm@zimbatm.com>2018-04-07 18:43:24 +0100
committerzimbatm <zimbatm@zimbatm.com>2018-04-07 19:15:58 +0100
commit636c6344433d3e0941b9f03216a26df057761cc7 (patch)
tree7d1ec67415d3ba981a17d65fa4ab0aecbd614350 /pkgs/development
parent1d87af68c1d9c7bbb6f026ab2873dc524d86efcf (diff)
downloadnixpkgs-636c6344433d3e0941b9f03216a26df057761cc7.tar
nixpkgs-636c6344433d3e0941b9f03216a26df057761cc7.tar.gz
nixpkgs-636c6344433d3e0941b9f03216a26df057761cc7.tar.bz2
nixpkgs-636c6344433d3e0941b9f03216a26df057761cc7.tar.lz
nixpkgs-636c6344433d3e0941b9f03216a26df057761cc7.tar.xz
nixpkgs-636c6344433d3e0941b9f03216a26df057761cc7.tar.zst
nixpkgs-636c6344433d3e0941b9f03216a26df057761cc7.zip
pythonPackages.jupyterlab_launcher: init at 0.10.5
Diffstat (limited to 'pkgs/development')
-rw-r--r--pkgs/development/python-modules/jupyterlab_launcher/default.nix25
1 files changed, 25 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/jupyterlab_launcher/default.nix b/pkgs/development/python-modules/jupyterlab_launcher/default.nix
new file mode 100644
index 00000000000..f316fe10563
--- /dev/null
+++ b/pkgs/development/python-modules/jupyterlab_launcher/default.nix
@@ -0,0 +1,25 @@
+{ lib, buildPythonPackage, fetchPypi, jsonschema, notebook }:
+buildPythonPackage rec {
+  pname = "jupyterlab_launcher";
+  version = "0.10.5";
+
+  src = fetchPypi {
+    inherit pname version;
+    sha256 = "1v1ir182zm2dl14lqvqjhx2x40wnp0i32n6rldxnm1allfpld1n7";
+  };
+
+  propagatedBuildInputs = [
+    jsonschema
+    notebook
+  ];
+
+  # depends on requests and a bunch of other libraries
+  doCheck = false;
+
+  meta = with lib; {
+    description = "This package is used to launch an application built using JupyterLab";
+    license = with licenses; [ bsd3 ];
+    homepage = "http://jupyter.org/";
+    maintainers = with maintainers; [ zimbatm ];
+  };
+}