poetry2nix/tests/jupyterlab-3/default.nix

10 lines
178 B
Nix
Raw Normal View History

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