pythonPackages.jupyterlab: init at 0.1.1

Note that this is still a pre-alpha release.
This commit is contained in:
Frederik Rietdijk 2016-07-16 22:42:16 +02:00
parent 6057977ca4
commit b4bae44f13

View file

@ -7056,6 +7056,27 @@ in modules // {
};
};
jupyterlab = buildPythonPackage rec {
name = "jupyterlab-${version}";
version = "0.1.1";
src = pkgs.fetchurl {
url = "mirror://pypi/j/jupyterlab/${name}.tar.gz";
sha256 = "c1a08f4d1b2bb1bf06db090db30df988a22ffbfa05606e7eb026e364969388da";
};
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/";
};
};
lti = let
self' = (self.override {self = self';}) // {pytest = self.pytest_27;};
mock_1_0_1 = self'.mock.overrideDerivation (_: rec {