poetry2nix/tests/shandy-sqlfmt/default.nix

12 lines
263 B
Nix
Raw Normal View History

2023-09-21 16:31:16 +02:00
{ lib, poetry2nix, python3, runCommand }:
let
env = poetry2nix.mkPoetryEnv {
python = python3;
pyproject = ./pyproject.toml;
poetrylock = ./poetry.lock;
};
in
runCommand "shandy-sqlfmt-test" { } ''
${env}/bin/python -c 'import sqlfmt' > $out
''