poetry2nix/tests/sphinx5/default.nix
2023-10-25 07:31:10 -04:00

10 lines
235 B
Nix

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