pythonPackages.jupyterlab_launcher: refactor (#46178)

jupyterlab_launcher does not support python version < 3.5. Disabled
for older versions
This commit is contained in:
Christopher Ostrouchov 2018-09-06 14:40:43 -04:00 committed by xeji
parent 5fc8ebdda0
commit 7bcc2870c7

View File

@ -1,7 +1,8 @@
{ lib, buildPythonPackage, fetchPypi, jsonschema, notebook }:
{ lib, buildPythonPackage, fetchPypi, jsonschema, notebook, pythonOlder }:
buildPythonPackage rec {
pname = "jupyterlab_launcher";
version = "0.13.1";
disabled = pythonOlder "3.5";
src = fetchPypi {
inherit pname version;