pythonPackages.jupyterlab_launcher: refactor (#46178)
jupyterlab_launcher does not support python version < 3.5. Disabled for older versions
This commit is contained in:
parent
5fc8ebdda0
commit
7bcc2870c7
@ -1,7 +1,8 @@
|
|||||||
{ lib, buildPythonPackage, fetchPypi, jsonschema, notebook }:
|
{ lib, buildPythonPackage, fetchPypi, jsonschema, notebook, pythonOlder }:
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "jupyterlab_launcher";
|
pname = "jupyterlab_launcher";
|
||||||
version = "0.13.1";
|
version = "0.13.1";
|
||||||
|
disabled = pythonOlder "3.5";
|
||||||
|
|
||||||
src = fetchPypi {
|
src = fetchPypi {
|
||||||
inherit pname version;
|
inherit pname version;
|
||||||
|
Loading…
Reference in New Issue
Block a user