poetry2nix/tests/textual-textarea/default.nix
2023-10-26 12:28:09 +13:00

11 lines
271 B
Nix

{ poetry2nix, python3, runCommand }:
let
env = poetry2nix.mkPoetryEnv {
python = python3;
pyproject = ./pyproject.toml;
poetrylock = ./poetry.lock;
};
in
runCommand "textual-textarea-test" { } ''
${env}/bin/python -c 'import textual_textarea' > $out
''