poetry2nix/tests/jupyterlab-3/default.nix
Victor Engmark addbd798eb fix: Support jupyterlab 4
While retaining jupyterlab 3 support.
2023-06-01 11:31:18 +12:00

9 lines
178 B
Nix

{ poetry2nix, runCommand }:
let
env = poetry2nix.mkPoetryEnv {
projectDir = ./.;
};
in
runCommand "jupyterlab-3-test" { } ''
${env}/bin/jupyter-lab --version > $out
''