poetry2nix/tests/jupyterlab/default.nix

10 lines
176 B
Nix
Raw Normal View History

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