mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-29 06:45:54 +03:00
pythonPackages.jupyterlab: init at 0.1.1
Note that this is still a pre-alpha release.
This commit is contained in:
parent
6057977ca4
commit
b4bae44f13
@ -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 {
|
||||
|
Loading…
Reference in New Issue
Block a user