Skip to content

Commit

Permalink
python3Packages.jupyterlab: Fix build
Browse files Browse the repository at this point in the history
The build was broken by updating the underlying python library.
This is the quickfix.

Fixes: ca67a72 ("python37Packages.jupyterlab_server: 0.2.0 -> 0.3.0")
Signed-off-by: Matthias Beyer <mail@beyermatthias.de>
  • Loading branch information
matthiasbeyer authored and FRidh committed Apr 25, 2019
1 parent ed1b59a commit dfd8f84
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions pkgs/development/python-modules/jupyterlab/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
, jupyterlab_server
, notebook
, pythonOlder
, fetchpatch
}:

buildPythonPackage rec {
Expand All @@ -22,6 +23,14 @@ buildPythonPackage rec {
"--set" "JUPYTERLAB_DIR" "$out/share/jupyter/lab"
];

patches = [
(fetchpatch {
name = "bump-jupyterlab_server-version";
url = https://github.com/jupyterlab/jupyterlab/commit/3b8d451e6f9a4c609e60cde5fbb3cc84aae79951.patch;
sha256 = "08vv6rp1k5fbmvj4v9x1d9zb6ymm9pv8ml80j7p45r9fay34rndf";
})
];

# Depends on npm
doCheck = false;

Expand Down

0 comments on commit dfd8f84

Please sign in to comment.