poetry2nix/tests/textual-dev/default.nix

12 lines
261 B
Nix
Raw Normal View History

2023-10-26 12:18:24 +13:00
{ poetry2nix, python3, runCommand }:
2023-09-21 16:31:16 +02:00
let
env = poetry2nix.mkPoetryEnv {
python = python3;
pyproject = ./pyproject.toml;
poetrylock = ./poetry.lock;
};
in
runCommand "textual-dev-test" { } ''
${env}/bin/python -c 'import textual_dev' > $out
''