pythonPackages.jupyterlab: 0.34.12 -> 0.35.4
This commit is contained in:
parent
43df6a539b
commit
58bba5a208
@ -1,19 +1,22 @@
|
|||||||
{ lib, buildPythonPackage, isPy3k, fetchPypi, ipython_genutils, jupyterlab_launcher, notebook }:
|
{ lib
|
||||||
|
, buildPythonPackage
|
||||||
|
, fetchPypi
|
||||||
|
, jupyterlab_server
|
||||||
|
, notebook
|
||||||
|
, pythonOlder
|
||||||
|
}:
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "jupyterlab";
|
pname = "jupyterlab";
|
||||||
version = "0.34.12";
|
version = "0.35.4";
|
||||||
disabled = !isPy3k;
|
disabled = pythonOlder "3.5";
|
||||||
|
|
||||||
src = fetchPypi {
|
src = fetchPypi {
|
||||||
inherit pname version;
|
inherit pname version;
|
||||||
sha256 = "7d8378d19a0ae173e91a493db996c37828b410b7ee556da21a153486168ecf87";
|
sha256 = "deba0b2803640fcad72c61366bff11d5945173015961586d5e3b2f629ffeb455";
|
||||||
};
|
};
|
||||||
|
|
||||||
propagatedBuildInputs = [
|
propagatedBuildInputs = [ jupyterlab_server notebook ];
|
||||||
ipython_genutils
|
|
||||||
jupyterlab_launcher
|
|
||||||
notebook
|
|
||||||
];
|
|
||||||
|
|
||||||
makeWrapperArgs = [
|
makeWrapperArgs = [
|
||||||
"--set" "JUPYTERLAB_DIR" "$out/share/jupyter/lab"
|
"--set" "JUPYTERLAB_DIR" "$out/share/jupyter/lab"
|
||||||
|
Loading…
Reference in New Issue
Block a user