poetry2nix/tests/sphinx5/default.nix

11 lines
235 B
Nix
Raw Normal View History

2023-10-25 07:31:10 -04:00
{ poetry2nix, python3, runCommand }:
let
env = poetry2nix.mkPoetryEnv {
python = python3;
projectDir = ./.;
};
in
runCommand "sphinx5-test" { } ''
${env}/bin/python -c 'import sphinx; print(sphinx.__version__)' > $out
''