python3Packages.jupyterlab: 0.4.1 -> 0.31.12

This commit is contained in:
zimbatm 2018-04-07 19:00:09 +01:00
parent 636c634443
commit 878ca5b68e
2 changed files with 28 additions and 20 deletions

View file

@ -0,0 +1,27 @@
{ lib, buildPythonPackage, isPy3k, fetchPypi, ipython_genutils, jupyterlab_launcher, notebook }:
buildPythonPackage rec {
pname = "jupyterlab";
version = "0.31.12";
disabled = !isPy3k;
src = fetchPypi {
inherit pname version;
sha256 = "1hp6p9bsr863glildgs2iy1a4l99m7rxj2sy9fmkxp5zhyhqvsrz";
};
propagatedBuildInputs = [
ipython_genutils
jupyterlab_launcher
notebook
];
# No tests in archive
doCheck = false;
meta = with lib; {
description = "Jupyter lab environment notebook server extension.";
license = with licenses; [ bsd3 ];
homepage = "http://jupyter.org/";
maintainers = with maintainers; [ zimbatm ];
};
}

View file

@ -3451,26 +3451,7 @@ in {
jupyterlab_launcher = callPackage ../development/python-modules/jupyterlab_launcher { };
jupyterlab = buildPythonPackage rec {
name = "jupyterlab-${version}";
version = "0.4.1";
src = pkgs.fetchurl {
url = "mirror://pypi/j/jupyterlab/${name}.tar.gz";
sha256 = "91dc4d7dfb1e6ab97e28d6e3a2fc38f5f65d368201c00fd0ed077519258e67bb";
};
propagatedBuildInputs = with self; [ notebook ];
# No tests in archive
doCheck = false;
meta = {
description = "Jupyter lab environment notebook server extension.";
license = with licenses; [ bsd3 ];
homepage = "http://jupyter.org/";
};
};
jupyterlab = callPackage ../development/python-modules/jupyterlab {};
PyLTI = callPackage ../development/python-modules/pylti { };