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 {
|
||||
pname = "jupyterlab";
|
||||
version = "0.34.12";
|
||||
disabled = !isPy3k;
|
||||
version = "0.35.4";
|
||||
disabled = pythonOlder "3.5";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "7d8378d19a0ae173e91a493db996c37828b410b7ee556da21a153486168ecf87";
|
||||
sha256 = "deba0b2803640fcad72c61366bff11d5945173015961586d5e3b2f629ffeb455";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [
|
||||
ipython_genutils
|
||||
jupyterlab_launcher
|
||||
notebook
|
||||
];
|
||||
propagatedBuildInputs = [ jupyterlab_server notebook ];
|
||||
|
||||
makeWrapperArgs = [
|
||||
"--set" "JUPYTERLAB_DIR" "$out/share/jupyter/lab"
|
||||
|
Loading…
Reference in New Issue
Block a user